[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2024-06-14 19:45:02 +00:00 committed by GitHub
parent 4a1c1f5969
commit d556ac26f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 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) 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.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') await page.waitForLoadState('networkidle')
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with viewport!').all()).toHaveLength(1) expect(await page.locator('body').getByText('This shouldn\'t be visible at first with viewport!').all()).toHaveLength(1)
}) })