add pending to the tests
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Pau 2022-11-30 14:49:00 +01:00
parent 67384b724d
commit 79f8e30ded
3 changed files with 6 additions and 6 deletions

View File

@ -10,8 +10,8 @@ describe('InvoiceOut createPdf()', () => {
};
const ctx = {req: activeCtx};
// https://redmine.verdnatura.es/issues/4875
xit('should create a new PDF file and set true the hasPdf property', async() => {
it('should create a new PDF file and set true the hasPdf property', async() => {
pending('https://redmine.verdnatura.es/issues/4875');
const invoiceId = 1;
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
active: activeCtx

View File

@ -29,8 +29,8 @@ describe('InvoiceOut downloadZip()', () => {
}
});
// https://redmine.verdnatura.es/issues/4875
xit('should return an error if the size of the files is too large', async() => {
it('should return an error if the size of the files is too large', async() => {
pending('https://redmine.verdnatura.es/issues/4875');
const tx = await models.InvoiceOut.beginTransaction({});
let error;

View File

@ -50,8 +50,8 @@ describe('InvoiceOut filter()', () => {
}
});
// https://redmine.verdnatura.es/issues/4875
xit('should return the invoice out matching hasPdf', async() => {
it('should return the invoice out matching hasPdf', async() => {
pending('https://redmine.verdnatura.es/issues/4875');
const tx = await models.InvoiceOut.beginTransaction({});
const options = {transaction: tx};