diff --git a/packages/runtime-core/__tests__/apiWatch.spec.ts b/packages/runtime-core/__tests__/apiWatch.spec.ts index 73fe02cc8fa..1b9f500da3c 100644 --- a/packages/runtime-core/__tests__/apiWatch.spec.ts +++ b/packages/runtime-core/__tests__/apiWatch.spec.ts @@ -930,7 +930,7 @@ describe('api: watch', () => { test('should force trigger on triggerRef with toRef from reactive', async () => { const foo = reactive({ bar: 1 }) const bar = toRef(foo, 'bar') - const spy = jest.fn() + const spy = vi.fn() watchEffect(() => { bar.value