83b0bb4062
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
28 lines
763 B
JavaScript
28 lines
763 B
JavaScript
import { mutations } from '../../agent';
|
|
import agents from './data';
|
|
|
|
describe('#mutations', () => {
|
|
describe('#setAgents', () => {
|
|
it('set agent records', () => {
|
|
const state = { records: [] };
|
|
mutations.setAgents(state, agents);
|
|
expect(state.records).toEqual(agents);
|
|
});
|
|
});
|
|
|
|
describe('#setError', () => {
|
|
it('set error flag', () => {
|
|
const state = { records: [], uiFlags: {} };
|
|
mutations.setError(state, true);
|
|
expect(state.uiFlags.isError).toEqual(true);
|
|
});
|
|
});
|
|
|
|
describe('#setError', () => {
|
|
it('set fetched flag', () => {
|
|
const state = { records: [], uiFlags: {} };
|
|
mutations.setHasFetched(state, true);
|
|
expect(state.uiFlags.hasFetched).toEqual(true);
|
|
});
|
|
});
|
|
});
|