chore: no async

This commit is contained in:
Michael Brevard 2024-06-28 13:46:54 +03:00 committed by GitHub
parent b28ee7896d
commit 9060907f3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2714,7 +2714,7 @@ describe('lazy import components', () => {
expect(await page.locator('body').getByText('This shouldn\'t be visible at first with events!').all()).toHaveLength(1)
await page.close()
})
it('does not delay hydration of components named after modifiers', async () => {
it('does not delay hydration of components named after modifiers', () => {
expect(html).toContain('This fake lazy event should be visible!')
expect(html).not.toContain('This fake lazy event shouldn\'t be visible!')
})