From 7babf22b7fbcbe421f86f5ce8afdde7213c8d982 Mon Sep 17 00:00:00 2001 From: Kynson Szetau Date: Mon, 20 Jan 2025 10:00:30 +0000 Subject: [PATCH] [ci] format --- packages/astro/e2e/dev-toolbar-audits.test.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/packages/astro/e2e/dev-toolbar-audits.test.js b/packages/astro/e2e/dev-toolbar-audits.test.js index 50a4ab1751..6227093cdc 100644 --- a/packages/astro/e2e/dev-toolbar-audits.test.js +++ b/packages/astro/e2e/dev-toolbar-audits.test.js @@ -44,7 +44,10 @@ test.describe('Dev Toolbar - Audits', () => { await appButton.click(); }); - test('does not warn about perf issue for below the fold image after mutation when body is unscrollable', async ({ page, astro }) => { + test('does not warn about perf issue for below the fold image after mutation when body is unscrollable', async ({ + page, + astro, + }) => { await page.goto(astro.resolveUrl('/audits-perf-body-unscrollable')); const toolbar = page.locator('astro-dev-toolbar'); @@ -67,7 +70,10 @@ test.describe('Dev Toolbar - Audits', () => { expect(auditHighlights).toHaveCount(1); }); - test('does not warn about perf issue for below the fold image in relative container', async ({ page, astro }) => { + test('does not warn about perf issue for below the fold image in relative container', async ({ + page, + astro, + }) => { await page.goto(astro.resolveUrl('/audits-perf-relative')); const toolbar = page.locator('astro-dev-toolbar'); @@ -80,7 +86,10 @@ test.describe('Dev Toolbar - Audits', () => { expect(auditHighlights).toHaveCount(0); }); - test('can warn about perf issue for below the fold image in absolute container', async ({ page, astro }) => { + test('can warn about perf issue for below the fold image in absolute container', async ({ + page, + astro, + }) => { await page.goto(astro.resolveUrl('/audits-perf-absolute')); const toolbar = page.locator('astro-dev-toolbar');