feat: refs #8151 Requested changes
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
d4a60f63c9
commit
534b50f51a
|
@ -1,6 +1,6 @@
|
|||
const models = require('vn-loopback/server/server').models;
|
||||
|
||||
describe('ticket moveExpeditions()', () => {
|
||||
fdescribe('ticket moveExpeditions()', () => {
|
||||
const ctx = beforeAll.getCtx();
|
||||
|
||||
it('should move the selected expeditions to new ticket', async() => {
|
||||
|
@ -17,14 +17,13 @@ describe('ticket moveExpeditions()', () => {
|
|||
agencyModeId: 1,
|
||||
routeId: null,
|
||||
expeditionIds: [1, 2]
|
||||
|
||||
};
|
||||
|
||||
const newestTicketIdInFixtures = await models.Ticket.findOne({
|
||||
order: 'id DESC'
|
||||
}, options);
|
||||
const ticket = await models.Expedition.moveExpeditions(ctx, options);
|
||||
|
||||
const newestTicketIdInFixtures = 27;
|
||||
|
||||
expect(ticket.id).toBeGreaterThan(newestTicketIdInFixtures);
|
||||
expect(ticket.id).toBeGreaterThan(newestTicketIdInFixtures.id);
|
||||
|
||||
await tx.rollback();
|
||||
} catch (e) {
|
||||
|
@ -49,11 +48,12 @@ describe('ticket moveExpeditions()', () => {
|
|||
expeditionIds: [1, 2]
|
||||
};
|
||||
|
||||
const newestTicketIdInFixtures = await models.Ticket.findOne({
|
||||
order: 'id DESC'
|
||||
}, options);
|
||||
const ticket = await models.Expedition.moveExpeditions(myCtx, options);
|
||||
|
||||
const newestTicketIdInFixtures = 27;
|
||||
|
||||
expect(ticket.id).toBeGreaterThan(newestTicketIdInFixtures);
|
||||
expect(ticket.id).toBeGreaterThan(newestTicketIdInFixtures.id);
|
||||
|
||||
const updatedTicket = await models.Ticket.findById(ticket.id, null, options);
|
||||
const packedState = await models.State.findOne({where: {code: 'PACKED'}}, options);
|
||||
|
|
Loading…
Reference in New Issue