Skip to content

Commit

Permalink
chore: fix jest reference in merged test case
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Feb 1, 2023
1 parent efe2efd commit f19f803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime-core/__tests__/apiWatch.spec.ts
Expand Up @@ -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
Expand Down

0 comments on commit f19f803

Please sign in to comment.