This commit is contained in:
parent
4e97d931f7
commit
153f5f56fa
|
@ -261,11 +261,12 @@ 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();
|
||||
expect(controller.$.sms.open).toHaveBeenCalledWith(route);
|
||||
expect(controller.newSMS).toEqual({
|
||||
destinationFk: ticket.clientFk,
|
||||
destination: ticket.address.mobile,
|
||||
|
|
Loading…
Reference in New Issue