fix: Assign agent action changes (#5827)

This commit is contained in:
Tejaswini Chile
2022-11-15 13:15:27 +05:30
committed by GitHub
parent 38ab3c36db
commit 826a735cdb
11 changed files with 35 additions and 15 deletions

View File

@@ -36,7 +36,7 @@ describe('webhookMixin', () => {
expect(wrapper.vm.getDropdownValues('assign_team')).toEqual(teams);
expect(wrapper.vm.getDropdownValues('send_email_to_team')).toEqual(teams);
expect(wrapper.vm.getDropdownValues('add_label')).toEqual(resolvedLabels);
expect(wrapper.vm.getDropdownValues('assign_best_agent')).toEqual(agents);
expect(wrapper.vm.getDropdownValues('assign_agent')).toEqual(agents);
expect(wrapper.vm.getDropdownValues()).toEqual([]);
});
});