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

mutations_spec.js « merge_requests « modules « stores « ide « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f45c577f801baa260a65d8ecb065214966e9d31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { TEST_HOST } from 'helpers/test_constants';
import * as types from '~/ide/stores/modules/merge_requests/mutation_types';
import mutations from '~/ide/stores/modules/merge_requests/mutations';
import state from '~/ide/stores/modules/merge_requests/state';
import { mergeRequests } from '../../../mock_data';

describe('IDE merge requests mutations', () => {
  let mockedState;

  beforeEach(() => {
    mockedState = state();
  });

  describe('REQUEST_MERGE_REQUESTS', () => {
    it('sets loading to true', () => {
      mutations[types.REQUEST_MERGE_REQUESTS](mockedState);

      expect(mockedState.isLoading).toBe(true);
    });
  });

  describe('RECEIVE_MERGE_REQUESTS_ERROR', () => {
    it('sets loading to false', () => {
      mutations[types.RECEIVE_MERGE_REQUESTS_ERROR](mockedState);

      expect(mockedState.isLoading).toBe(false);
    });
  });

  describe('RECEIVE_MERGE_REQUESTS_SUCCESS', () => {
    it('sets merge requests', () => {
      gon.gitlab_url = TEST_HOST;
      mutations[types.RECEIVE_MERGE_REQUESTS_SUCCESS](mockedState, mergeRequests);

      expect(mockedState.mergeRequests).toEqual([
        {
          id: 1,
          iid: 1,
          title: 'Test merge request',
          projectId: 1,
          projectPathWithNamespace: 'namespace/project-path',
        },
      ]);
    });
  });

  describe('RESET_MERGE_REQUESTS', () => {
    it('clears merge request array', () => {
      mockedState.mergeRequests = ['test'];

      mutations[types.RESET_MERGE_REQUESTS](mockedState);

      expect(mockedState.mergeRequests).toEqual([]);
    });
  });
});