[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2024-06-15 13:38:28 +00:00 committed by GitHub
parent aa3df0bc6f
commit 5d5432cba7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -2679,13 +2679,13 @@ describe('lazy import components', () => {
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)
await page.waitForResponse(response =>
response.status() === 200 && response.text().then(text => text.includes("This shouldn't be visible at first with events!"))
await page.waitForResponse(response =>
response.status() === 200 && response.text().then(text => text.includes('This shouldn\'t be visible at first with events!')),
)
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))
await page.waitForResponse(response =>
response.status() === 200 && response.text().then(text => text.includes("This shouldn't be visible at first with viewport!"))
await page.waitForResponse(response =>
response.status() === 200 && response.text().then(text => text.includes('This shouldn\'t be visible at first with viewport!')),
)
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with viewport!').all()).toHaveLength(1)
})