mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-26 07:55:13 +00:00
* Ability to change the account name * Ability to set a language to the account Addresses: #667 #307 Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
33 lines
651 B
JavaScript
33 lines
651 B
JavaScript
import { getters } from '../../accounts';
|
|
|
|
const accountData = {
|
|
id: 1,
|
|
name: 'Company one',
|
|
locale: 'en',
|
|
};
|
|
|
|
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,
|
|
});
|
|
});
|
|
});
|