mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
13 lines
422 B
JavaScript
13 lines
422 B
JavaScript
import { mutations, ADD_AGENTS_TO_TEAM } from '../../teamMembers';
|
|
import teamMembers from './fixtures';
|
|
|
|
describe('#mutations', () => {
|
|
describe('#ADD_AGENTS_TO_TEAM', () => {
|
|
it('Adds team members to records', () => {
|
|
const state = { records: {} };
|
|
mutations[ADD_AGENTS_TO_TEAM](state, { data: teamMembers[0], teamId: 1 });
|
|
expect(state.records).toEqual({ 1: teamMembers[0] });
|
|
});
|
|
});
|
|
});
|