From fa6fc8ba4c674a1ebfa79d7bd8b9b5c201f7186b Mon Sep 17 00:00:00 2001 From: matthewp Date: Thu, 27 Jul 2023 19:11:02 +0000 Subject: [PATCH] [ci] format --- packages/astro/e2e/view-transitions.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js index 82007122a8fb..11fbfa4aa7b0 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(' component forwards transitions to the ', async ({ page, astro }) => { + + test(' component forwards transitions to the ', 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.'); - }); + }); });