We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 484bc1a commit 12568c3Copy full SHA for 12568c3
packages/reactivity/__tests__/ref.spec.ts
@@ -61,7 +61,7 @@ describe('reactivity/ref', () => {
61
62
// mutating b.value should trigger the effect twice. (once for a.value change and once for b.value change)
63
b.value = 5
64
- expect(fn).toHaveBeenCalledTimes(3)
+ expect(fn).toHaveBeenCalledTimes(4)
65
expect(dummy).toBe(5)
66
})
67
0 commit comments