Skip to content

Commit b689ae5

Browse files
authored
chore(deps): update jest to v27 (#4472)
Updates jest and ts-jest to v27, as jest v27.1.0 includes a necessary fix to unblock further work on spying issues. See jestjs/jest#11721
1 parent fc6476a commit b689ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

__tests__/instance.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ describe('INSTANCE_EVENT_EMITTER', () => {
157157
})
158158

159159
it('$off event + fn', () => {
160-
const spy2 = jasmine.createSpy('emitter')
160+
const spy2 = jest.fn()
161161
vm.$on('test', spy)
162162
vm.$on('test', spy2)
163163
vm.$off('test', spy)

0 commit comments

Comments
 (0)