summaryrefslogtreecommitdiff
path: root/spec/frontend/integrations/edit/store/actions_spec.js
blob: 5b5c8d6f76ee4460a2db0ebbff9fa79998b9c99d (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 testAction from 'helpers/vuex_action_helper';
import createState from '~/integrations/edit/store/state';
import {
  setOverride,
  setIsSaving,
  setIsTesting,
  setIsResetting,
} from '~/integrations/edit/store/actions';
import * as types from '~/integrations/edit/store/mutation_types';

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

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

  describe('setOverride', () => {
    it('should commit override mutation', () => {
      return testAction(setOverride, true, state, [{ type: types.SET_OVERRIDE, payload: true }]);
    });
  });

  describe('setIsSaving', () => {
    it('should commit isSaving mutation', () => {
      return testAction(setIsSaving, true, state, [{ type: types.SET_IS_SAVING, payload: true }]);
    });
  });

  describe('setIsTesting', () => {
    it('should commit isTesting mutation', () => {
      return testAction(setIsTesting, true, state, [{ type: types.SET_IS_TESTING, payload: true }]);
    });
  });

  describe('setIsResetting', () => {
    it('should commit isResetting mutation', () => {
      return testAction(setIsResetting, true, state, [
        { type: types.SET_IS_RESETTING, payload: true },
      ]);
    });
  });
});