diff --git a/packages/runtime-vapor/__tests__/hydration.spec.ts b/packages/runtime-vapor/__tests__/hydration.spec.ts index 74eae445e..38faf3896 100644 --- a/packages/runtime-vapor/__tests__/hydration.spec.ts +++ b/packages/runtime-vapor/__tests__/hydration.spec.ts @@ -2846,16 +2846,6 @@ describe('mismatch handling', () => { expect(`Hydration text content mismatch`).toHaveBeenWarned() }) - test('element with v-html', async () => { - const data = ref('

bar

') - const { container } = await mountWithHydration( - `

foo

`, - `
`, - data, - ) - expect(container.innerHTML).toBe('

bar

') - expect(`Hydration children mismatch on`).toHaveBeenWarned() - }) // test('not enough children', () => { // const { container } = mountWithHydration(`
`, () => // h('div', [h('span', 'foo'), h('span', 'bar')]),