3fc646f330
* add campaign store(getter, actions and mutations) * add campaign store module * add get campaigns api * add fetch campaign action widget load * add specs * code cleanup * trigger campaig api fixes * integrate campaign trigger action * code cleanup * revert changes * trigger api fixes * review fixes * code beautification * chore: Fix multiple campaigns being send because of race condition * chore: rubocop * chore: Fix specs * disable campaigns Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan <sojan@pepalo.com>
28 lines
793 B
JavaScript
28 lines
793 B
JavaScript
import { mutations } from '../../campaign';
|
|
import { campaigns } from './data';
|
|
|
|
describe('#mutations', () => {
|
|
describe('#setCampagins', () => {
|
|
it('set campaign records', () => {
|
|
const state = { records: [] };
|
|
mutations.setCampaigns(state, campaigns);
|
|
expect(state.records).toEqual(campaigns);
|
|
});
|
|
});
|
|
|
|
describe('#setError', () => {
|
|
it('set error flag', () => {
|
|
const state = { records: [], uiFlags: {} };
|
|
mutations.setError(state, true);
|
|
expect(state.uiFlags.isError).toEqual(true);
|
|
});
|
|
});
|
|
|
|
describe('#setHasFetched', () => {
|
|
it('set fetched flag', () => {
|
|
const state = { records: [], uiFlags: {} };
|
|
mutations.setHasFetched(state, true);
|
|
expect(state.uiFlags.hasFetched).toEqual(true);
|
|
});
|
|
});
|
|
});
|