reactivate test

This commit is contained in:
Pau 2023-01-03 13:24:44 +01:00
parent 4dee2313f4
commit 56354ba771
2 changed files with 1 additions and 5 deletions

View File

@ -11,7 +11,6 @@ describe('InvoiceOut createPdf()', () => {
const ctx = {req: activeCtx}; const ctx = {req: activeCtx};
it('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; const invoiceId = 1;
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({ spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
active: activeCtx active: activeCtx

View File

@ -66,10 +66,7 @@ describe('InvoiceOut filter()', () => {
const result = await models.InvoiceOut.filter(ctx, {id: invoiceOut.id}, options); const result = await models.InvoiceOut.filter(ctx, {id: invoiceOut.id}, options);
// expect(result.length).toEqual(1); expect(result.length).toEqual(1);
expect(result.length).toBeGreaterThanOrEqual(1);
// Debido a que parece que esta fallando debido a un test anterior que no hace rollback
// y deja la base de datos en un estado inconsistente, se cambia el expect a que sea mayor o igual a 1.
await tx.rollback(); await tx.rollback();
} catch (e) { } catch (e) {