From d755af5ca0ae44bf57ad0b32148b4a0c92307f67 Mon Sep 17 00:00:00 2001 From: Bendik Aagaard Lynghaug Date: Tue, 8 Sep 2026 19:32:37 +0200 Subject: [PATCH] fix(html): hydration mismatch detection ignores ' + const server = wrap.firstChild + const client = html`

hi

` + let reported = null + hydrate(server, client, { onMismatch: (d) => { reported = d } }) + assert.strictEqual(reported, null) +}) + test('mismatch detection is optional and hydrate still morphs without it', () => { const server = html`

old

` const client = html`

new

`