debian-mirror-gitlab/spec/frontend/vuex_shared/modules/modal/mutations_spec.js

50 lines
1 KiB
JavaScript
Raw Normal View History

2019-02-15 15:39:39 +05:30
import mutations from '~/vuex_shared/modules/modal/mutations';
import * as types from '~/vuex_shared/modules/modal/mutation_types';
describe('Vuex ModalModule mutations', () => {
2019-07-31 22:56:46 +05:30
describe(`${types.SHOW}`, () => {
2019-02-15 15:39:39 +05:30
it('sets isVisible to true', () => {
const state = {
isVisible: false,
};
mutations[types.SHOW](state);
expect(state).toEqual({
isVisible: true,
});
});
});
2019-07-31 22:56:46 +05:30
describe(`${types.HIDE}`, () => {
2019-02-15 15:39:39 +05:30
it('sets isVisible to false', () => {
const state = {
isVisible: true,
};
mutations[types.HIDE](state);
expect(state).toEqual({
isVisible: false,
});
});
});
2019-07-31 22:56:46 +05:30
describe(`${types.OPEN}`, () => {
2019-02-15 15:39:39 +05:30
it('sets data and sets isVisible to true', () => {
const data = { id: 7 };
const state = {
isVisible: false,
data: null,
};
mutations[types.OPEN](state, data);
expect(state).toEqual({
isVisible: true,
data,
});
});
});
});