const {models} = require('vn-loopback/server/server');

describe('roadMapStop getPalletMatchState()', () => {
    it('should return list of pallet with true or false if state is matched', async() => {
        const truckFk = 1;
        const state = 'ON DELIVERY';
        const result = await models.RoadmapStop.getPalletMatchState(truckFk, state);

        expect(result[0].hasMatchStateCode).toBe(1);
    });
});