From 26f2e4e7d1b9cbb6bb836d040666b4552c0d2146 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:18:37 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- test/basic.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }) })