feat: refs #7569 refs#7569 sendEmailNotification
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Sergio De la torre 2025-01-20 12:36:31 +01:00
parent 0340612645
commit b5e27707a7
1 changed files with 2 additions and 2 deletions

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}]);