Feature: Contact Panel with conversation details (#397)
* 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
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { getters } from '../../conversationMetadata';
|
||||
|
||||
describe('#getters', () => {
|
||||
it('getConversationMetadata', () => {
|
||||
const state = {
|
||||
records: {
|
||||
1: {
|
||||
browser: { name: 'Chrome' },
|
||||
},
|
||||
},
|
||||
};
|
||||
expect(getters.getConversationMetadata(state)(1)).toEqual({
|
||||
browser: { name: 'Chrome' },
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as types from '../../../mutation-types';
|
||||
import { mutations } from '../../conversationMetadata';
|
||||
|
||||
describe('#mutations', () => {
|
||||
describe('#SET_INBOXES', () => {
|
||||
it('set inbox records', () => {
|
||||
const state = { records: {} };
|
||||
mutations[types.default.SET_CONVERSATION_METADATA](state, {
|
||||
id: 1,
|
||||
data: { browser: { name: 'Chrome' } },
|
||||
});
|
||||
expect(state.records).toEqual({
|
||||
1: { browser: { name: 'Chrome' } },
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user