From 1452cf69a4dbf6c49f0d3b18e70cf257c3c3cf72 Mon Sep 17 00:00:00 2001 From: Martin Trapp Date: Wed, 17 Apr 2024 09:57:24 +0000 Subject: [PATCH] [ci] format --- packages/astro/e2e/view-transitions.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js index 14cb8668d236..ef76010a5871 100644 --- a/packages/astro/e2e/view-transitions.test.js +++ b/packages/astro/e2e/view-transitions.test.js @@ -1405,9 +1405,9 @@ test.describe('View Transitions', () => { }); test('transition:persist persists selection', async ({ page, astro }) => { - let text = ""; + let text = ''; page.on('console', (msg) => { - text=msg.text(); + text = msg.text(); }); await page.goto(astro.resolveUrl('/persist-1')); await expect(page.locator('#one'), 'should have content').toHaveText('Persist 1');