Skip to content

Commit fc84803

Browse files
johnsoncodehkyyx990803
authored andcommitted
fix: jest -> vitest
1 parent a94ec58 commit fc84803

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/reactivity/__tests__/computed.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ describe('reactivity/computed', () => {
292292
})
293293

294294
it('chained computed value on-demand trigger', () => {
295-
const c1Spy = jest.fn()
296-
const c2Spy = jest.fn()
295+
const c1Spy = vi.fn()
296+
const c2Spy = vi.fn()
297297

298298
const src = ref(0)
299299
const c1 = computed(() => {

0 commit comments

Comments
 (0)