41 lines
1,020 B
JavaScript
41 lines
1,020 B
JavaScript
import { shallowMount, createLocalVue } from '@vue/test-utils';
|
|
import agentMixin from '../agentMixin';
|
|
import agentFixtures from './agentFixtures';
|
|
import Vuex from 'vuex';
|
|
const localVue = createLocalVue();
|
|
localVue.use(Vuex);
|
|
|
|
describe('agentMixin', () => {
|
|
let getters;
|
|
let store;
|
|
beforeEach(() => {
|
|
getters = {
|
|
getCurrentUser: () => ({
|
|
id: 1,
|
|
availability_status: 'busy',
|
|
}),
|
|
};
|
|
store = new Vuex.Store({ getters });
|
|
});
|
|
|
|
it('return formatted agents', () => {
|
|
const Component = {
|
|
render() {},
|
|
title: 'TestComponent',
|
|
mixins: [agentMixin],
|
|
data() {
|
|
return {
|
|
inboxId: 1,
|
|
currentChat: { meta: { assignee: { name: 'John' } } },
|
|
};
|
|
},
|
|
computed: {
|
|
assignableAgents() {
|
|
return agentFixtures.allAgents;
|
|
},
|
|
},
|
|
};
|
|
const wrapper = shallowMount(Component, { store, localVue });
|
|
expect(wrapper.vm.agentsList).toEqual(agentFixtures.formattedAgents);
|
|
});
|
|
});
|