fix: update test

This commit is contained in:
Michael Brevard 2024-06-16 10:20:51 +03:00 committed by GitHub
parent 34d13cbe0e
commit 86e88052fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2675,7 +2675,7 @@ describe('lazy import components', () => {
await page.waitForLoadState('networkidle')
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 events!').all()).toHaveLength(1)
expect(await page.locator('body').getByText('This should be visible at first with events!').all()).toHaveLength(2)
const component = await page.locator('#lazyevent')
const rect = (await component.boundingBox())!
await page.mouse.move(rect.x + rect.width / 2, rect.y + rect.height / 2)