chore: use Promise.all to try and be faster than initial idle time

This commit is contained in:
Michael Brevard 2024-06-09 23:36:04 +03:00 committed by GitHub
parent 53d73baa48
commit c8cbcfc56e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2639,8 +2639,12 @@ describe('lazy import components', () => {
it('lazy load delayed hydration comps at the right time', async () => {
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 should 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)
const [allNetwork, allViewport] = await Promise.all([
page.locator('body').getByText('This should be visible at first with network!').all(),
page.locator('body').getByText('This should be visible at first with viewport!').all(),
])
expect(allNetwork).toHaveLength(1)
expect(allViewport).toHaveLength(1)
await page.waitForLoadState('networkidle')
expect(await page.locator('body').getByText('This should be visible at first with network!').all()).toHaveLength(0)
await page.evaluate(() => window.scrollTo(0, document.body.scrollHeight))