Skip to content

Commit b2df4db

Browse files
committed
chore: fix failing tests due to migration to the jest
1 parent 5ffb65a commit b2df4db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/modules.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -734,9 +734,9 @@ describe('Modules', () => {
734734
})
735735

736736
it('action error subscribers', (done) => {
737-
const beforeSpy = jasmine.createSpy()
738-
const afterSpy = jasmine.createSpy()
739-
const errorSpy = jasmine.createSpy()
737+
const beforeSpy = jest.fn()
738+
const afterSpy = jest.fn()
739+
const errorSpy = jest.fn()
740740
const error = new Error()
741741
const store = new Vuex.Store({
742742
actions: {

0 commit comments

Comments
 (0)