salix/modules/ticket/back/methods/expedition/specs/deleteExpeditions.spec.js

25 lines
658 B
JavaScript
Raw Normal View History

2022-10-10 10:56:03 +00:00
const models = require('vn-loopback/server/server').models;
describe('ticket deleteExpeditions()', () => {
2024-06-14 06:39:57 +00:00
const ctx = beforeAll.getCtx();
2022-10-10 10:56:03 +00:00
it('should delete the selected expeditions', async() => {
const tx = await models.Expedition.beginTransaction({});
try {
const options = {transaction: tx};
const expeditionIds = [12, 13];
2023-11-23 10:21:56 +00:00
const result = await models.Expedition.deleteExpeditions(ctx, expeditionIds, options);
2022-10-10 10:56:03 +00:00
expect(result.length).toEqual(2);
2022-10-10 10:56:03 +00:00
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
});