diff --git a/packages/runtime-core/__tests__/components/Suspense.spec.ts b/packages/runtime-core/__tests__/components/Suspense.spec.ts index 1feb40fb231..179c32ca40c 100644 --- a/packages/runtime-core/__tests__/components/Suspense.spec.ts +++ b/packages/runtime-core/__tests__/components/Suspense.spec.ts @@ -1237,7 +1237,7 @@ describe('Suspense', () => { }) describe('warnings', () => { - // base function to check if a combination of solts warns or not + // base function to check if a combination of slots warns or not function baseCheckWarn( shouldWarn: boolean, children: RawSlots, @@ -1281,8 +1281,8 @@ describe('Suspense', () => { test('does not warn on ', async () => { checkNoWarn({ - default: () => [resolveDynamicComponent(null)] - // fallback: () => null + default: () => [resolveDynamicComponent(null)], + fallback: () => null }) })