[ci] format

This commit is contained in:
matthewp 2023-07-21 14:43:17 +00:00 committed by astrobot-houston
parent 201d32dcfc
commit e5e5cc8e70

View file

@ -105,10 +105,7 @@ test.describe('View Transitions', () => {
).toEqual(2); ).toEqual(2);
}); });
test('Moving from a page without ViewTransitions w/ back button', async ({ test('Moving from a page without ViewTransitions w/ back button', async ({ page, astro }) => {
page,
astro,
}) => {
const loads = []; const loads = [];
page.addListener('load', (p) => { page.addListener('load', (p) => {
loads.push(p.title()); loads.push(p.title());
@ -124,7 +121,6 @@ test.describe('View Transitions', () => {
p = page.locator('#three'); p = page.locator('#three');
await expect(p, 'should have content').toHaveText('Page 3'); await expect(p, 'should have content').toHaveText('Page 3');
// Back to page 1 // Back to page 1
await page.goBack(); await page.goBack();
p = page.locator('#one'); p = page.locator('#one');