Skip to content

Commit f19f803

Browse files
committed
chore: fix jest reference in merged test case
1 parent efe2efd commit f19f803

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-core/__tests__/apiWatch.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ describe('api: watch', () => {
930930
test('should force trigger on triggerRef with toRef from reactive', async () => {
931931
const foo = reactive({ bar: 1 })
932932
const bar = toRef(foo, 'bar')
933-
const spy = jest.fn()
933+
const spy = vi.fn()
934934

935935
watchEffect(() => {
936936
bar.value

0 commit comments

Comments
 (0)