7569-sendEmailOrderTicket #3350

Merged
sergiodt merged 11 commits from 7569-sendEmailOrderTicket into dev 2025-01-21 06:29:29 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit b5e27707a7 - Show all commits

View File

@ -16,7 +16,7 @@ describe('Ticket saveSign()', () => {
});
});
fit(`should throw error if the ticket's alert level is lower than 2`, async() => {
it(`should throw error if the ticket's alert level is lower than 2`, async() => {
const tx = await models.TicketDms.beginTransaction({});
const ticketWithOkState = 12;
let error;
@ -35,7 +35,7 @@ describe('Ticket saveSign()', () => {
expect(error).toBeDefined();
});
fit('should change state for ticket', async() => {
it('should change state for ticket', async() => {
const tx = await models.Ticket.beginTransaction({});
const ticketWithPackedState = 7;
spyOn(models.Dms, 'uploadFile').and.returnValue([{id: 1}]);