Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp authored and astrobot-houston committed Oct 19, 2022
1 parent 5a674f9 commit d0c0a3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/integrations/prefetch/test/style-prefetch.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
});
Expand Down

0 comments on commit d0c0a3b

Please sign in to comment.