summaryrefslogtreecommitdiff
path: root/spec/frontend/integrations/edit/store/mutations_spec.js
blob: 4707b4b37144f256a23c298c295ab695e05e3301 (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
import mutations from '~/integrations/edit/store/mutations';
import createState from '~/integrations/edit/store/state';
import * as types from '~/integrations/edit/store/mutation_types';

describe('Integration form store mutations', () => {
  let state;

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

  describe(`${types.SET_OVERRIDE}`, () => {
    it('sets override', () => {
      mutations[types.SET_OVERRIDE](state, true);

      expect(state.override).toBe(true);
    });
  });

  describe(`${types.SET_IS_SAVING}`, () => {
    it('sets isSaving', () => {
      mutations[types.SET_IS_SAVING](state, true);

      expect(state.isSaving).toBe(true);
    });
  });

  describe(`${types.SET_IS_TESTING}`, () => {
    it('sets isTesting', () => {
      mutations[types.SET_IS_TESTING](state, true);

      expect(state.isTesting).toBe(true);
    });
  });

  describe(`${types.SET_IS_RESETTING}`, () => {
    it('sets isResetting', () => {
      mutations[types.SET_IS_RESETTING](state, true);

      expect(state.isResetting).toBe(true);
    });
  });
});