salix/modules/zone/back/methods/agency/specs/getLanded.spec.js

28 lines
811 B
JavaScript
Raw Normal View History

const models = require('vn-loopback/server/server').models;
2019-11-18 11:32:50 +00:00
describe('agency getLanded()', () => {
2018-08-16 11:12:18 +00:00
it('should return a landing date', async() => {
2020-09-23 09:21:25 +00:00
const ctx = {req: {accessToken: {userId: 1}}};
2023-01-16 14:18:24 +00:00
const shipped = Date.vnNew();
2019-11-18 11:32:50 +00:00
shipped.setDate(shipped.getDate() + 1);
const addressFk = 121;
const agencyModeFk = 7;
const warehouseFk = 1;
2018-08-16 11:12:18 +00:00
const tx = await models.Zone.beginTransaction({});
try {
const options = {transaction: tx};
const result = await models.Agency.getLanded(ctx, shipped, addressFk, agencyModeFk, warehouseFk, options);
expect(result.landed).toBeDefined();
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
2018-08-16 11:12:18 +00:00
});
});