2020-10-24 23:57:45 +05:30
|
|
|
import testAction from 'helpers/vuex_action_helper';
|
2020-07-28 23:09:34 +05:30
|
|
|
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 }]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|