3476-detele_ticket_bug #837
|
@ -145,7 +145,7 @@
|
||||||
.icon-credit:before {
|
.icon-credit:before {
|
||||||
content: "\e923";
|
content: "\e923";
|
||||||
}
|
}
|
||||||
.icon-deletedTicketCross:before {
|
.icon-deletedTicket:before {
|
||||||
content: "\e924";
|
content: "\e924";
|
||||||
}
|
}
|
||||||
.icon-deleteline:before {
|
.icon-deleteline:before {
|
||||||
|
|
|
@ -13,8 +13,6 @@ describe('InvoiceOut download()', () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
it('should return the downloaded file name', async() => {
|
it('should return the downloaded file name', async() => {
|
||||||
const year = new Date().getFullYear();
|
|
||||||
|
|
||||||
spyOn(models.InvoiceContainer, 'container').and.returnValue({
|
spyOn(models.InvoiceContainer, 'container').and.returnValue({
|
||||||
client: {root: '/path'}
|
client: {root: '/path'}
|
||||||
});
|
});
|
||||||
|
@ -25,6 +23,6 @@ describe('InvoiceOut download()', () => {
|
||||||
const result = await models.InvoiceOut.download(ctx, invoiceId);
|
const result = await models.InvoiceOut.download(ctx, invoiceId);
|
||||||
|
|
||||||
expect(result[1]).toEqual('application/pdf');
|
expect(result[1]).toEqual('application/pdf');
|
||||||
expect(result[2]).toEqual(`filename="${year}T1111111.pdf"`);
|
expect(result[2]).toMatch(/filename="\d{4}T1111111.pdf"/);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue