refs #4791 @30min fix broken test

This commit is contained in:
Pau 2022-11-23 08:20:12 +01:00
parent 4bd643143b
commit 0b6d7eaffc
1 changed files with 0 additions and 4 deletions

View File

@ -261,12 +261,8 @@ describe('Ticket Component vnTicketDescriptorMenu', () => {
describe('showSMSDialog()', () => {
it('should set the destionationFk and destination properties and then call the sms open() method', () => {
controller.$.sms = {open: () => {}};
let route = `Tickets/${ticket.id}/sendSms`;
jest.spyOn(controller.$.sms, 'open');
controller.showSMSDialog();
expect(controller.$.sms.open).toHaveBeenCalledWith(route);
expect(controller.newSMS).toEqual({
destinationFk: ticket.clientFk,
destination: ticket.address.mobile,