Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug]: empty result of lazy component doubles next node #4075

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions compat/test/browser/suspense-hydration.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,37 @@ describe('suspense hydration', () => {
});
});

it('should correct processed empty result of lazy component', () => {
scratch.innerHTML = '<main><p>i am not from lazy</p></main>';
clearLog();

const [Lazy, resolve] = createLazy();
hydrate(
<main>
<Suspense fallback={<p>will be never showed while hydration</p>}>
<Lazy />
</Suspense>
<p>i am not from lazy</p>
</main>,
scratch
);
rerender(); // Flush rerender queue to mimic what preact will really do
expect(scratch.innerHTML).to.equal(
'<main><p>i am not from lazy</p></main>'
);
expect(getLog()).to.deep.equal([]);
clearLog();

return resolve(() => null).then(() => {
rerender();
expect(scratch.innerHTML).to.equal(
'<main><p>i am not from lazy</p></main>'
);
expect(getLog()).to.deep.equal([]);
clearLog();
});
});

it('should properly attach event listeners when suspending while hydrating', () => {
scratch.innerHTML = '<div>Hello</div><div>World</div>';
clearLog();
Expand Down
Loading