diff --git a/test/basic.test.ts b/test/basic.test.ts index 9e5983c4c..2bd13d73f 100644 --- a/test/basic.test.ts +++ b/test/basic.test.ts @@ -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!") + }) })