summaryrefslogtreecommitdiff
path: root/spec/frontend/projects/commit/store/getters_spec.js
blob: 38c45af7aa0420c3e9e8df2b234e6c615a513697 (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
import * as getters from '~/projects/commit/store/getters';
import mockData from '../mock_data';

describe('Commit form modal getters', () => {
  describe('joinedBranches', () => {
    it('should join fetched branches with variable branches', () => {
      const state = {
        branches: mockData.mockBranches,
      };

      expect(getters.joinedBranches(state)).toEqual(mockData.mockBranches.sort());
    });

    it('should provide a uniq list of branches', () => {
      const branches = ['_branch_', '_branch_', '_different_branch'];
      const state = { branches };

      expect(getters.joinedBranches(state)).toEqual(branches.slice(1));
    });
  });

  describe('sortedProjects', () => {
    it('should sort projects with variable branches', () => {
      const state = {
        projects: mockData.mockProjects,
      };

      expect(getters.sortedProjects(state)).toEqual(mockData.mockProjects.sort());
    });

    it('should provide a uniq list of projects', () => {
      const projects = ['_project_', '_project_', '_some_other_project'];
      const state = { projects };

      expect(getters.sortedProjects(state)).toEqual(projects.slice(1));
    });
  });
});