summaryrefslogtreecommitdiff
path: root/spec/javascripts/vuex_shared/modules/modal/mutations_spec.js
blob: d07f8ba1e653a502b9f017e29209e4cb8193d6c3 (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
import mutations from '~/vuex_shared/modules/modal/mutations';
import * as types from '~/vuex_shared/modules/modal/mutation_types';

describe('Vuex ModalModule mutations', () => {
  describe(types.SHOW, () => {
    it('sets isVisible to true', () => {
      const state = {
        isVisible: false,
      };

      mutations[types.SHOW](state);

      expect(state).toEqual({
        isVisible: true,
      });
    });
  });

  describe(types.HIDE, () => {
    it('sets isVisible to false', () => {
      const state = {
        isVisible: true,
      };

      mutations[types.HIDE](state);

      expect(state).toEqual({
        isVisible: false,
      });
    });
  });

  describe(types.OPEN, () => {
    it('sets data and sets isVisible to true', () => {
      const data = { id: 7 };
      const state = {
        isVisible: false,
        data: null,
      };

      mutations[types.OPEN](state, data);

      expect(state).toEqual({
        isVisible: true,
        data,
      });
    });
  });
});