From 2802c0f4dc74efeec878d5138cb82ef7d984761b Mon Sep 17 00:00:00 2001 From: daiwei Date: Tue, 23 Sep 2025 15:44:35 +0800 Subject: [PATCH] chore: remove redundant test --- packages/runtime-vapor/__tests__/hydration.spec.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/packages/runtime-vapor/__tests__/hydration.spec.ts b/packages/runtime-vapor/__tests__/hydration.spec.ts index f77d58c349..d8ca5a606e 100644 --- a/packages/runtime-vapor/__tests__/hydration.spec.ts +++ b/packages/runtime-vapor/__tests__/hydration.spec.ts @@ -2944,16 +2944,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')]), -- 2.47.3