We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ffb65a commit b2df4dbCopy full SHA for b2df4db
test/unit/modules.spec.js
@@ -734,9 +734,9 @@ describe('Modules', () => {
734
})
735
736
it('action error subscribers', (done) => {
737
- const beforeSpy = jasmine.createSpy()
738
- const afterSpy = jasmine.createSpy()
739
- const errorSpy = jasmine.createSpy()
+ const beforeSpy = jest.fn()
+ const afterSpy = jest.fn()
+ const errorSpy = jest.fn()
740
const error = new Error()
741
const store = new Vuex.Store({
742
actions: {
0 commit comments