summaryrefslogtreecommitdiff
path: root/spec/frontend/whats_new/store/actions_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/whats_new/store/actions_spec.js')
-rw-r--r--spec/frontend/whats_new/store/actions_spec.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/frontend/whats_new/store/actions_spec.js b/spec/frontend/whats_new/store/actions_spec.js
new file mode 100644
index 00000000000..d95453c9175
--- /dev/null
+++ b/spec/frontend/whats_new/store/actions_spec.js
@@ -0,0 +1,17 @@
+import testAction from 'helpers/vuex_action_helper';
+import actions from '~/whats_new/store/actions';
+import * as types from '~/whats_new/store/mutation_types';
+
+describe('whats new actions', () => {
+ describe('openDrawer', () => {
+ it('should commit openDrawer', () => {
+ testAction(actions.openDrawer, {}, {}, [{ type: types.OPEN_DRAWER }]);
+ });
+ });
+
+ describe('closeDrawer', () => {
+ it('should commit closeDrawer', () => {
+ testAction(actions.closeDrawer, {}, {}, [{ type: types.CLOSE_DRAWER }]);
+ });
+ });
+});