summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2023-07-21 14:43:17 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-07-21 14:43:17 +0000
commite5e5cc8e70bd7e842d8cdeb8614552e621e3aea0 (patch)
treea46e604f2584936536df4946b581430f0305a52d
parent201d32dcfc58ca82468ac9be43b07cdc60abad88 (diff)
downloadastro-e5e5cc8e70bd7e842d8cdeb8614552e621e3aea0.tar.gz
astro-e5e5cc8e70bd7e842d8cdeb8614552e621e3aea0.tar.zst
astro-e5e5cc8e70bd7e842d8cdeb8614552e621e3aea0.zip
[ci] format
-rw-r--r--packages/astro/e2e/view-transitions.test.js6
1 files changed, 1 insertions, 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');