fix: Specs
This commit is contained in:
parent
9fb9887348
commit
1c9458b823
1 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue