salix/services/loopback/common/methods/ticket/specs/get-total.spec.js

20 lines
602 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', done => {
app.models.Ticket.getTotal(1)
2018-04-17 12:49:55 +00:00
.then(response => {
expect(response).toEqual(325.05);
2018-04-17 12:49:55 +00:00
done();
});
});
it(`should call the getTotal method and return zero if doesn't have lines`, done => {
app.models.Ticket.getTotal(13)
2018-04-17 12:49:55 +00:00
.then(response => {
expect(response).toEqual(0);
done();
});
});
});