summaryrefslogtreecommitdiff
path: root/spec/frontend/integrations/edit/store/actions_spec.js
blob: 5356c0a411b0ca1939e1ae7d69c8a80e0e30afbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import testAction from 'helpers/vuex_action_helper';
import createState from '~/integrations/edit/store/state';
import { setOverride } 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 }]);
    });
  });
});