31 lines
740 B
JavaScript
31 lines
740 B
JavaScript
|
import { getters } from '../../attributes';
|
||
|
import attributesList from './fixtures';
|
||
|
|
||
|
describe('#getters', () => {
|
||
|
it('getAttributes', () => {
|
||
|
const state = { records: attributesList };
|
||
|
expect(getters.getAttributes(state)(1)).toEqual([
|
||
|
{
|
||
|
attribute_display_name: 'Language one',
|
||
|
attribute_display_type: 1,
|
||
|
attribute_description: 'The conversation language one',
|
||
|
attribute_key: 'language_one',
|
||
|
attribute_model: 3,
|
||
|
},
|
||
|
]);
|
||
|
});
|
||
|
|
||
|
it('getUIFlags', () => {
|
||
|
const state = {
|
||
|
uiFlags: {
|
||
|
isFetching: true,
|
||
|
isCreating: false,
|
||
|
},
|
||
|
};
|
||
|
expect(getters.getUIFlags(state)).toEqual({
|
||
|
isFetching: true,
|
||
|
isCreating: false,
|
||
|
});
|
||
|
});
|
||
|
});
|