From e5e5cc8e70bd7e842d8cdeb8614552e621e3aea0 Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 21 Jul 2023 14:43:17 +0000 Subject: [PATCH] [ci] format --- packages/astro/e2e/view-transitions.test.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js index 15cc52a0f..5dbd845f4 100644 --- a/packages/astro/e2e/view-transitions.test.js +++ b/packages/astro/e2e/view-transitions.test.js @@ -105,10 +105,7 @@ test.describe('View Transitions', () => { ).toEqual(2); }); - test('Moving from a page without ViewTransitions w/ back button', async ({ - page, - astro, - }) => { + test('Moving from a page without ViewTransitions w/ back button', async ({ page, astro }) => { const loads = []; page.addListener('load', (p) => { loads.push(p.title()); @@ -124,7 +121,6 @@ test.describe('View Transitions', () => { p = page.locator('#three'); await expect(p, 'should have content').toHaveText('Page 3'); - // Back to page 1 await page.goBack(); p = page.locator('#one');