chore: fix jest reference in merged test case

This commit is contained in:
Evan You 2023-02-01 16:50:13 +08:00
parent efe2efd210
commit f19f803ea8
1 changed files with 1 additions and 1 deletions

View File

@ -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