diff --git a/test/basic.test.ts b/test/basic.test.ts index 36ea3c7197..a7d010d04b 100644 --- a/test/basic.test.ts +++ b/test/basic.test.ts @@ -2567,7 +2567,7 @@ describe('lazy import components', () => { expect(html).not.toContain('This shouldn\'t be visible at first!') const { page } = await renderPage('/lazy-import-components') expect(await page.locator('body').getByText('This shouldn\'t be visible at first!').all()).toHaveLength(0) - await page.mouse.wheel(0,4000) + await page.mouse.wheel(0, 4000) expect(await page.locator('body').getByText('This shouldn\'t be visible at first!').all()).toHaveLength(1) }) })