f78df91dd2
- Update sidebar design - Move every contact data to contacts module - Revert go to next conversation feature - Fix issues with new conversation in action cable - Escape HTML content - Broadcast event when conversation.contact changes. Co-authored-by: Sojan <sojan@pepalo.com>
33 lines
747 B
JavaScript
33 lines
747 B
JavaScript
import { getters } from '../../contacts';
|
|
import contactList from './fixtures';
|
|
|
|
describe('#getters', () => {
|
|
it('getContacts', () => {
|
|
const state = {
|
|
records: { 1: contactList[0] },
|
|
};
|
|
expect(getters.getContacts(state)).toEqual([contactList[0]]);
|
|
});
|
|
|
|
it('getContact', () => {
|
|
const state = {
|
|
records: { 2: contactList[1] },
|
|
};
|
|
expect(getters.getContact(state)(2)).toEqual(contactList[1]);
|
|
});
|
|
|
|
it('getUIFlags', () => {
|
|
const state = {
|
|
uiFlags: {
|
|
isFetching: true,
|
|
isFetchingItem: true,
|
|
isUpdating: false,
|
|
},
|
|
};
|
|
expect(getters.getUIFlags(state)).toEqual({
|
|
isFetching: true,
|
|
isFetchingItem: true,
|
|
isUpdating: false,
|
|
});
|
|
});
|
|
});
|