fix backtest
gitea/salix/1933-fix_backTest This commit looks good Details

This commit is contained in:
Bernat Exposito Domenech 2019-12-18 07:30:24 +01:00
parent 3d83a08eca
commit 03af680968
1 changed files with 7 additions and 4 deletions

View File

@ -2,13 +2,16 @@ const app = require('vn-loopback/server/server');
describe('invoiceOut book()', () => {
const invoiceOutId = 1;
let invoiceOutRef;
let bookedDate;
let OriginalInvoiceOut;
let updatedInvoiceOut;
let bookedDate;
afterAll(async done => {
updatedInvoiceOut.updateAttributes({booked: OriginalInvoiceOut.booked, hasPdf: OriginalInvoiceOut.hasPdf});
updatedInvoiceOut.updateAttributes({
booked: OriginalInvoiceOut.booked,
hasPdf: OriginalInvoiceOut.hasPdf,
amount: OriginalInvoiceOut.amount
});
done();
});
@ -24,7 +27,7 @@ describe('invoiceOut book()', () => {
it(`should confirm the book property have been updated`, async() => {
OriginalInvoiceOut = await app.models.InvoiceOut.findById(invoiceOutId);
invoiceOutRef = OriginalInvoiceOut.ref;
let invoiceOutRef = OriginalInvoiceOut.ref;
await app.models.InvoiceOut.book(invoiceOutRef);