summaryrefslogtreecommitdiff
path: root/spec/javascripts/helpers/vuex_action_helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/helpers/vuex_action_helper.js')
-rw-r--r--spec/javascripts/helpers/vuex_action_helper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/helpers/vuex_action_helper.js b/spec/javascripts/helpers/vuex_action_helper.js
index 83f29d1b0c2..d6ab0aeeed7 100644
--- a/spec/javascripts/helpers/vuex_action_helper.js
+++ b/spec/javascripts/helpers/vuex_action_helper.js
@@ -55,7 +55,7 @@ export default (action, payload, state, expectedMutations, expectedActions, done
};
// call the action with mocked store and arguments
- action({ commit, state, dispatch }, payload);
+ action({ commit, state, dispatch, rootState: state }, payload);
// check if no mutations should have been dispatched
if (expectedMutations.length === 0) {