From 2b4c2ae01c89b69882897804eafc078bd15f1885 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 08:09:56 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- .../runtime-core/__tests__/components/KeepAlive.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/runtime-core/__tests__/components/KeepAlive.spec.ts b/packages/runtime-core/__tests__/components/KeepAlive.spec.ts index f7f8ebb19bc..2dcf08df070 100644 --- a/packages/runtime-core/__tests__/components/KeepAlive.spec.ts +++ b/packages/runtime-core/__tests__/components/KeepAlive.spec.ts @@ -894,7 +894,7 @@ describe('KeepAlive', () => { childCount++ }) return () => 'child' - } + }, }) const Parent = defineComponent({ setup() { @@ -902,14 +902,14 @@ describe('KeepAlive', () => { parentCount++ }) return () => h(Child) - } + }, }) const AsyncComp = defineAsyncComponent(() => Promise.resolve(Parent)) const App = { render: () => { return h(KeepAlive, null, () => (toggle.value ? h(AsyncComp) : null)) - } + }, } render(h(App), root)