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 https://github.com/facebook/jest/pull/11721
This commit is contained in:
Cédric Exbrayat
2021-09-01 22:39:46 +02:00
committed by GitHub
parent b9b28e229a
commit b49f446ad0
5 changed files with 565 additions and 1178 deletions

View File

@@ -157,7 +157,7 @@ describe('INSTANCE_EVENT_EMITTER', () => {
})
it('$off event + fn', () => {
const spy2 = jasmine.createSpy('emitter')
const spy2 = jest.fn()
vm.$on('test', spy)
vm.$on('test', spy2)
vm.$off('test', spy)