fix: refs #6900 fine tunning #2905

Merged
jorgep merged 5 commits from 6900-hotfix-fineTunning into master 2024-09-04 13:57:27 +00:00
1 changed files with 1 additions and 24 deletions
Showing only changes of commit 4ea1177d38 - Show all commits

View File

@ -47,29 +47,6 @@ describe('InvoiceIn filter()', () => {
}
});
it('should return the invoice in matching the serial number', async() => {

Serial number está deprecado.

Serial number está deprecado.
const tx = await models.InvoiceIn.beginTransaction({});
const options = {transaction: tx};
try {
const ctx = {
args: {
serialNumber: '1002',
}
};
const result = await models.InvoiceIn.filter(ctx, {}, options);
expect(result.length).toEqual(1);
expect(result[0].serialNumber).toEqual(1002);
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
it('should return the invoice in matching the account', async() => {
const tx = await models.InvoiceIn.beginTransaction({});
const options = {transaction: tx};
@ -158,7 +135,7 @@ describe('InvoiceIn filter()', () => {
const result = await models.InvoiceIn.filter(ctx, {}, options);
expect(result.length).toEqual(5);
expect(result.length).toEqual(6);
Review

ahora se filtra por issued en lugar de created.

ahora se filtra por issued en lugar de created.
await tx.rollback();
} catch (e) {