wip: add scrolling to test for delayed hydration

This commit is contained in:
Michael Brevard 2024-04-08 19:58:33 +03:00 committed by GitHub
parent 36dc73152f
commit dd36a18140
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2567,5 +2567,9 @@ 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.evaluate(()=>{
window.scrollTo(0, document.body.scrollHeight)
})
expect(await page.locator('body').getByText('This shouldn\'t be visible at first!').all()).toHaveLength(1)
})
})