Merge branch 'dev' of https://git.verdnatura.es/salix into dev

This commit is contained in:
Gerard 2018-10-24 12:28:40 +02:00
commit ed80915120
1 changed files with 2 additions and 3 deletions

View File

@ -1,10 +1,9 @@
const app = require(`${servicesDir}/order/server/server`);
// lo repara el cau 8189
xdescribe('order getTotal()', () => {
describe('order getTotal()', () => {
it('should return the total', async() => {
let result = await app.models.Order.getTotal(1);
expect(result.total).toEqual(14.45);
expect(result).toEqual(145.09);
});
});