From 37f9ef81746f917e0fe16e9f63c7d27c906627b4 Mon Sep 17 00:00:00 2001 From: Evan You Date: Mon, 27 May 2024 17:03:03 +0800 Subject: [PATCH] chore: run prettier --- packages/runtime-core/__tests__/hydration.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-core/__tests__/hydration.spec.ts b/packages/runtime-core/__tests__/hydration.spec.ts index 7d90ea9f3..933542ab9 100644 --- a/packages/runtime-core/__tests__/hydration.spec.ts +++ b/packages/runtime-core/__tests__/hydration.spec.ts @@ -1165,7 +1165,7 @@ describe('SSR hydration', () => { const Comp = { render(this: any) { return h('p', ['']) - } + }, } const { container } = mountWithHydration('

', () => h(Comp)) expect(container.childNodes.length).toBe(1)