wip: add initial lazy load check

This commit is contained in:
Michael Brevard 2024-04-08 17:59:41 +03:00 committed by GitHub
parent 998c1ba551
commit 4cc9efe563
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2562,4 +2562,8 @@ describe('lazy import components', () => {
it('lazy load named component with mode server', () => {
expect(html).toContain('lazy-named-comp-server')
})
it('lazy load delayed hydration comps at the right time', () => {
expect(html).not.toContain("This shouldn't be visible at first!")
})
})