Skip to content

Commit

Permalink
fix: jest -> vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Feb 2, 2023
1 parent 771c667 commit e106183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/reactivity/__tests__/computed.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ describe('reactivity/computed', () => {
})

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

const src = ref(0)
const c1 = computed(() => {
Expand Down

0 comments on commit e106183

Please sign in to comment.