439e064d90
* Add Contact panel changes * Fix parent iframe blocked * Add Conversation Panel, Contact messages * Update contact panel with conversation details * Update designs in sidebar * Fix specs * Specs: Add specs for conversationMetadata and contact modules * Fix currentUrl issues * Fix spelling * Set default to empty string
33 lines
722 B
JavaScript
33 lines
722 B
JavaScript
import { getters } from '../../contacts';
|
|
import contactList from './fixtures';
|
|
|
|
describe('#getters', () => {
|
|
it('getContacts', () => {
|
|
const state = {
|
|
records: contactList,
|
|
};
|
|
expect(getters.getContacts(state)).toEqual(contactList);
|
|
});
|
|
|
|
it('getContact', () => {
|
|
const state = {
|
|
records: contactList,
|
|
};
|
|
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,
|
|
});
|
|
});
|
|
});
|