From d556ac26f7e29d741432be843c6435c4a07cc457 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 19:45:02 +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 55f4bb821c..01f4bf7ad0 100644 --- a/test/basic.test.ts +++ b/test/basic.test.ts @@ -2676,7 +2676,7 @@ describe('lazy import components', () => { expect(await page.locator('body').getByText('This shouldn\'t be visible at first with network!').all()).toHaveLength(1) expect(await page.locator('body').getByText('This should be visible at first with viewport!').all()).toHaveLength(1) await page.evaluate(() => window.scrollTo(0, document.body.scrollHeight)) - await page.waitForTimeout(1000); //attempt a hard-coded delay to ensure IO isn't triggered after network is idle + await page.waitForTimeout(1000) // attempt a hard-coded delay to ensure IO isn't triggered after network is idle await page.waitForLoadState('networkidle') expect(await page.locator('body').getByText('This shouldn\'t be visible at first with viewport!').all()).toHaveLength(1) })