31 lines
856 B
JavaScript
31 lines
856 B
JavaScript
import testAction from 'helpers/vuex_action_helper';
|
|
import * as actions from '~/vuex_shared/modules/modal/actions';
|
|
import * as types from '~/vuex_shared/modules/modal/mutation_types';
|
|
|
|
describe('Vuex ModalModule actions', () => {
|
|
describe('open', () => {
|
|
it('works', () => {
|
|
const data = { id: 7 };
|
|
|
|
return testAction(actions.open, data, {}, [{ type: types.OPEN, payload: data }], []);
|
|
});
|
|
});
|
|
|
|
describe('close', () => {
|
|
it('works', () => {
|
|
return testAction(actions.close, null, {}, [{ type: types.CLOSE }], []);
|
|
});
|
|
});
|
|
|
|
describe('show', () => {
|
|
it('works', () => {
|
|
return testAction(actions.show, null, {}, [{ type: types.SHOW }], []);
|
|
});
|
|
});
|
|
|
|
describe('hide', () => {
|
|
it('works', () => {
|
|
return testAction(actions.hide, null, {}, [{ type: types.HIDE }], []);
|
|
});
|
|
});
|
|
});
|