mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 09:22:27 +00:00
wip: add scrolling to test for delayed hydration
This commit is contained in:
parent
36dc73152f
commit
dd36a18140
@ -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)
|
||||
})
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user