From 00ea675409229048d52fe87aea256729aa4e89b9 Mon Sep 17 00:00:00 2001 From: Johannes Spohr Date: Tue, 17 Sep 2024 14:12:42 +0000 Subject: [PATCH] [ci] format --- packages/astro/e2e/view-transitions.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js index a94c50d036..29f6d0e5ef 100644 --- a/packages/astro/e2e/view-transitions.test.js +++ b/packages/astro/e2e/view-transitions.test.js @@ -543,8 +543,8 @@ test.describe('View Transitions', () => { const pageTitle = page.locator('.page'); await expect(pageTitle).toHaveText('Island 2'); }); - - test('Solid Islands can persist using transition:persist', async ({ page, astro }) => { + + test('Solid Islands can persist using transition:persist', async ({ page, astro }) => { // Go to page 1 await page.goto(astro.resolveUrl('/island-solid-one')); let cnt = page.locator('.counter pre'); @@ -569,7 +569,7 @@ test.describe('View Transitions', () => { await expect(cnt).toHaveText('A1'); }); - test('Svelte Islands can persist using transition:persist', async ({ page, astro }) => { + test('Svelte Islands can persist using transition:persist', async ({ page, astro }) => { // Go to page 1 await page.goto(astro.resolveUrl('/island-svelte-one')); let cnt = page.locator('.counter pre'); @@ -586,7 +586,7 @@ test.describe('View Transitions', () => { // Count should remain, but the prefix should be updated await expect(cnt).toHaveText('B1'); }); - + test('Vue Islands can persist using transition:persist', async ({ page, astro }) => { // Go to page 1 await page.goto(astro.resolveUrl('/island-vue-one'));