Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/whats_new/store/mutations_spec.js')
-rw-r--r--spec/frontend/whats_new/store/mutations_spec.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/frontend/whats_new/store/mutations_spec.js b/spec/frontend/whats_new/store/mutations_spec.js
index 3c33364fed3..feaa1dd2a3b 100644
--- a/spec/frontend/whats_new/store/mutations_spec.js
+++ b/spec/frontend/whats_new/store/mutations_spec.js
@@ -22,4 +22,11 @@ describe('whats new mutations', () => {
expect(state.open).toBe(false);
});
});
+
+ describe('setFeatures', () => {
+ it('sets features to data', () => {
+ mutations[types.SET_FEATURES](state, 'bells and whistles');
+ expect(state.features).toBe('bells and whistles');
+ });
+ });
});