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

16 lines
444 B
JavaScript
Raw Normal View History

const app = require(`${servicesDir}/ticket/server/server`);
describe('ticket getShipped()', () => {
it('should call the getShipped method', async() => {
let data = {
landed: new Date(),
addressFk: 121,
2018-07-30 13:21:12 +00:00
agencyModeFk: 7
};
await app.models.Ticket.getShipped(data)
.then(response => {
expect(response.warehouseFk).toEqual(1);
});
});
});