summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/e2e/view-transitions.test.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js
index a94c50d03..29f6d0e5e 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'));