mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-25 23:22:02 +00:00
test: begin waiting for response before events
This commit is contained in:
parent
62fb11f253
commit
1794ae33f1
@ -2700,15 +2700,17 @@ describe('lazy import components', () => {
|
|||||||
expect(await page.locator('body').getByText('This should be visible at first with events!').all()).toHaveLength(2)
|
expect(await page.locator('body').getByText('This should be visible at first with events!').all()).toHaveLength(2)
|
||||||
const component = await page.locator('#lazyevent')
|
const component = await page.locator('#lazyevent')
|
||||||
const rect = (await component.boundingBox())!
|
const rect = (await component.boundingBox())!
|
||||||
await page.mouse.move(rect.x + rect.width / 2, rect.y + rect.height / 2)
|
const resp = page.waitForResponse(response =>
|
||||||
await page.waitForResponse(response =>
|
|
||||||
response.status() === 200 && response.text().then(text => text.includes('This shouldn\'t be visible at first with events!')),
|
response.status() === 200 && response.text().then(text => text.includes('This shouldn\'t be visible at first with events!')),
|
||||||
)
|
)
|
||||||
|
await page.mouse.move(rect.x + rect.width / 2, rect.y + rect.height / 2)
|
||||||
|
await resp
|
||||||
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with events!').all()).toHaveLength(1)
|
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with events!').all()).toHaveLength(1)
|
||||||
await page.evaluate(() => window.scrollTo(0, document.body.scrollHeight))
|
const resp2 = page.waitForResponse(response =>
|
||||||
await page.waitForResponse(response =>
|
|
||||||
response.status() === 200 && response.text().then(text => text.includes('This shouldn\'t be visible at first with viewport!')),
|
response.status() === 200 && response.text().then(text => text.includes('This shouldn\'t be visible at first with viewport!')),
|
||||||
)
|
)
|
||||||
|
await page.evaluate(() => window.scrollTo(0, document.body.scrollHeight))
|
||||||
|
await resp2
|
||||||
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with viewport!').all()).toHaveLength(1)
|
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with viewport!').all()).toHaveLength(1)
|
||||||
await page.close()
|
await page.close()
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user