65 lines
1.3 KiB
JavaScript
65 lines
1.3 KiB
JavaScript
import { getters } from '../../accounts';
|
|
|
|
const accountData = {
|
|
id: 1,
|
|
name: 'Company one',
|
|
locale: 'en',
|
|
features: {
|
|
auto_resolve_conversations: false,
|
|
agent_management: false,
|
|
},
|
|
};
|
|
|
|
describe('#getters', () => {
|
|
it('getAccount', () => {
|
|
const state = {
|
|
records: [accountData],
|
|
};
|
|
expect(getters.getAccount(state)(1)).toEqual(accountData);
|
|
});
|
|
it('getUIFlags', () => {
|
|
const state = {
|
|
uiFlags: {
|
|
isFetching: true,
|
|
isCreating: false,
|
|
isUpdating: false,
|
|
isDeleting: false,
|
|
},
|
|
};
|
|
expect(getters.getUIFlags(state)).toEqual({
|
|
isFetching: true,
|
|
isCreating: false,
|
|
isUpdating: false,
|
|
isDeleting: false,
|
|
});
|
|
});
|
|
|
|
it('isFeatureEnabledonAccount', () => {
|
|
const state = {
|
|
records: [accountData],
|
|
};
|
|
const rootGetters = {
|
|
getCurrentUser: {
|
|
type: 'SuperAdmin',
|
|
},
|
|
};
|
|
expect(
|
|
getters.isFeatureEnabledonAccount(
|
|
state,
|
|
null,
|
|
null,
|
|
rootGetters
|
|
)(1, 'auto_resolve_conversations')
|
|
).toEqual(true);
|
|
});
|
|
|
|
it('isFeatureEnabledGlobally', () => {
|
|
const state = {
|
|
records: [accountData],
|
|
};
|
|
expect(
|
|
getters.isFeatureEnabledGlobally(state)(1, 'auto_resolve_conversations')
|
|
).toEqual(false);
|
|
});
|
|
});
|