feat: refs #7743 add simple spec for sendMail

This commit is contained in:
Pablo Natek 2024-11-11 08:06:22 +01:00
parent dd7c967624
commit d6349f113c
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
const models = require('vn-loopback/server/server').models;
describe('sendMail', () => {
it('should insert in mail', async() => {
const ctx = {
req: {accessToken: {userId: 50}},
args: {workerFk: 1106, year: 2001, week: 1}
};
const tx = await models.Sale.beginTransaction({});
const options = {transaction: tx};
options.transaction = tx;
const mailCountBefore = await models.Mail.count(options);
await models.WorkerTimeControl.sendMail(ctx, options);
const mailCountAfter = await models.Mail.count(options);
expect(mailCountAfter).toBeGreaterThan(mailCountBefore);
await tx.rollback();
});
});