2018-08-14 09:52:10 +00:00
|
|
|
const app = require(`${servicesDir}/order/server/server`);
|
2018-08-08 14:15:53 +00:00
|
|
|
|
|
|
|
describe('order getVolumes()', () => {
|
|
|
|
it('should return the volumes of a given order id', async() => {
|
|
|
|
let [result] = await app.models.Order.getVolumes(1);
|
|
|
|
|
2018-10-10 09:17:55 +00:00
|
|
|
expect(result.volume).toEqual(0.04);
|
2018-08-08 14:15:53 +00:00
|
|
|
});
|
|
|
|
});
|