25 lines
503 B
JavaScript
Executable File
25 lines
503 B
JavaScript
Executable File
import { getters } from '../../contactLabels';
|
|
|
|
describe('#getters', () => {
|
|
it('getContactLabels', () => {
|
|
const state = {
|
|
records: { 1: ['customer-success', 'on-hold'] },
|
|
};
|
|
expect(getters.getContactLabels(state)(1)).toEqual([
|
|
'customer-success',
|
|
'on-hold',
|
|
]);
|
|
});
|
|
|
|
it('getUIFlags', () => {
|
|
const state = {
|
|
uiFlags: {
|
|
isFetching: true,
|
|
},
|
|
};
|
|
expect(getters.getUIFlags(state)).toEqual({
|
|
isFetching: true,
|
|
});
|
|
});
|
|
});
|