salix/services/loopback/common/methods/ticket/specs/getTotal.spec.js

18 lines
572 B
JavaScript
Raw Normal View History

const app = require(`${servicesDir}/ticket/server/server`);
2018-04-17 12:49:55 +00:00
describe('ticket getTotal()', () => {
it('should call the getTotal method and return the response', async() => {
await app.models.Ticket.getTotal(1)
2018-04-17 12:49:55 +00:00
.then(response => {
2018-07-02 06:18:54 +00:00
expect(response).toEqual(448.25);
2018-04-17 12:49:55 +00:00
});
});
it(`should call the getTotal method and return zero if doesn't have lines`, async() => {
await app.models.Ticket.getTotal(13)
2018-04-17 12:49:55 +00:00
.then(response => {
expect(response).toEqual(0);
});
});
});