From 4a1c1f5969582f5248088aee4fec52dfef63d542 Mon Sep 17 00:00:00 2001 From: tbitw2549 Date: Fri, 14 Jun 2024 22:42:26 +0300 Subject: [PATCH] wip: add hardcoded await --- test/basic.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/basic.test.ts b/test/basic.test.ts index e49e663b33..55f4bb821c 100644 --- a/test/basic.test.ts +++ b/test/basic.test.ts @@ -2676,6 +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.waitForLoadState('networkidle') expect(await page.locator('body').getByText('This shouldn\'t be visible at first with viewport!').all()).toHaveLength(1) })