mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 13:45:18 +00:00
fix: await bounding vox
This commit is contained in:
parent
d5bd5f8392
commit
5390cae241
@ -2677,7 +2677,7 @@ describe('lazy import components', () => {
|
||||
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 events!').all()).toHaveLength(1)
|
||||
const component = await page.locator('#lazyevent');
|
||||
const rect = component.boundingBox()
|
||||
const rect = await component.boundingBox()
|
||||
await page.mouse.move(rect.x + rect.width / 2, rect.y + rect.height / 2)
|
||||
await page.waitForLoadState('networkidle')
|
||||
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with events!').all()).toHaveLength(1)
|
||||
|
Loading…
Reference in New Issue
Block a user