From: daiwei Date: Tue, 23 Sep 2025 07:44:35 +0000 (+0800) Subject: chore: remove redundant test X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2802c0f4dc74efeec878d5138cb82ef7d984761b;p=thirdparty%2Fvuejs%2Fcore.git chore: remove redundant test --- 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')]),