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

11 lines
314 B
JavaScript
Raw Normal View History

const app = require(`${servicesDir}/ticket/server/server`);
2018-04-17 12:49:55 +00:00
describe('ticket getTaxes()', () => {
it('should call the getTaxes method', async() => {
await app.models.Ticket.getTaxes(1)
2018-04-17 12:49:55 +00:00
.then(response => {
2018-07-02 06:18:54 +00:00
expect(response[0].tax).toEqual(20.95);
2018-04-17 12:49:55 +00:00
});
});
});