14 lines
487 B
JavaScript
14 lines
487 B
JavaScript
const app = require('vn-loopback/server/server');
|
|
|
|
describe('route getDeliveryPoint()', () => {
|
|
const routeId = 1;
|
|
const deliveryPointAddress = '1007 Mountain Drive, Gotham';
|
|
|
|
it('should get the delivery point addres of a route with assigned vehicle', async() => {
|
|
let route = await app.models.Route.findById(routeId);
|
|
let address = await app.models.Route.getDeliveryPoint(route.vehicleFk);
|
|
|
|
expect(address).toEqual(deliveryPointAddress);
|
|
});
|
|
});
|