fix: Specs

This commit is contained in:
iamsivin 2022-12-26 09:37:02 +05:30
parent 9fb9887348
commit 1c9458b823

View file

@ -209,7 +209,7 @@ describe('automationMethodsMixin', () => {
it('appendNewAction appends a new condition to the automation data property', () => {
const action = {
action_name: 'assign_team',
action_name: 'assign_agent',
action_params: [],
};
const data = () => {
@ -339,6 +339,9 @@ describe('automationMethodsMixin', () => {
};
};
const computed = {
agents() {
return agents;
},
labels() {
return labels;
},
@ -419,6 +422,9 @@ describe('automationMethodsMixin', () => {
return {};
};
const computed = {
agents() {
return agents;
},
labels() {
return labels;
},