mirror of https://github.com/vuejs/core.git
chore: fix jest reference in merged test case
This commit is contained in:
parent
efe2efd210
commit
f19f803ea8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue