diff options
-rw-r--r-- | packages/astro/e2e/view-transitions.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js index 82007122a..11fbfa4aa 100644 --- a/packages/astro/e2e/view-transitions.test.js +++ b/packages/astro/e2e/view-transitions.test.js @@ -182,11 +182,11 @@ test.describe('View Transitions', () => { await page.click('#click-one'); await expect(p, 'should have content').toHaveText('Page 1'); }); - - test('<Image /> component forwards transitions to the <img>', async ({ page, astro }) => { + + test('<Image /> component forwards transitions to the <img>', async ({ page, astro }) => { // Go to page 1 await page.goto(astro.resolveUrl('/image-one')); const img = page.locator('img[data-astro-transition-scope]'); await expect(img).toBeVisible('The image tag should have the transition scope attribute.'); - }); + }); }); |