From d0c0a3b984c5f7c43fe18848922a7810b32b37bd Mon Sep 17 00:00:00 2001 From: matthewp Date: Wed, 19 Oct 2022 19:23:39 +0000 Subject: [PATCH] [ci] format --- packages/integrations/prefetch/test/style-prefetch.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/integrations/prefetch/test/style-prefetch.test.js b/packages/integrations/prefetch/test/style-prefetch.test.js index 4e56e01ee..8e89a35e3 100644 --- a/packages/integrations/prefetch/test/style-prefetch.test.js +++ b/packages/integrations/prefetch/test/style-prefetch.test.js @@ -45,9 +45,9 @@ test.describe('Style prefetch', () => { await page.waitForLoadState('networkidle'); - await expect(requests.filter(req => req.includes('/style1'))).toBeTruthy(); - await expect(requests.filter(req => req.includes('/style2'))).toBeTruthy(); - const cssRequestCount = requests.filter(req => req.includes('/main.css')).length; + await expect(requests.filter((req) => req.includes('/style1'))).toBeTruthy(); + await expect(requests.filter((req) => req.includes('/style2'))).toBeTruthy(); + const cssRequestCount = requests.filter((req) => req.includes('/main.css')).length; await expect(cssRequestCount).toBe(1); }); });