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/search/store/mutations_spec.js')
-rw-r--r--spec/frontend/search/store/mutations_spec.js28
1 files changed, 27 insertions, 1 deletions
diff --git a/spec/frontend/search/store/mutations_spec.js b/spec/frontend/search/store/mutations_spec.js
index 28d9646b97e..560ed66263b 100644
--- a/spec/frontend/search/store/mutations_spec.js
+++ b/spec/frontend/search/store/mutations_spec.js
@@ -1,7 +1,7 @@
import mutations from '~/search/store/mutations';
import createState from '~/search/store/state';
import * as types from '~/search/store/mutation_types';
-import { MOCK_QUERY, MOCK_GROUPS } from '../mock_data';
+import { MOCK_QUERY, MOCK_GROUPS, MOCK_PROJECTS } from '../mock_data';
describe('Global Search Store Mutations', () => {
let state;
@@ -36,6 +36,32 @@ describe('Global Search Store Mutations', () => {
});
});
+ describe('REQUEST_PROJECTS', () => {
+ it('sets fetchingProjects to true', () => {
+ mutations[types.REQUEST_PROJECTS](state);
+
+ expect(state.fetchingProjects).toBe(true);
+ });
+ });
+
+ describe('RECEIVE_PROJECTS_SUCCESS', () => {
+ it('sets fetchingProjects to false and sets projects', () => {
+ mutations[types.RECEIVE_PROJECTS_SUCCESS](state, MOCK_PROJECTS);
+
+ expect(state.fetchingProjects).toBe(false);
+ expect(state.projects).toBe(MOCK_PROJECTS);
+ });
+ });
+
+ describe('RECEIVE_PROJECTS_ERROR', () => {
+ it('sets fetchingProjects to false and clears projects', () => {
+ mutations[types.RECEIVE_PROJECTS_ERROR](state);
+
+ expect(state.fetchingProjects).toBe(false);
+ expect(state.projects).toEqual([]);
+ });
+ });
+
describe('SET_QUERY', () => {
const payload = { key: 'key1', value: 'value1' };