8144-devToTest_2448 #3216

Merged
alexm merged 256 commits from 8144-devToTest_2448 into test 2024-11-19 07:36:04 +00:00
2 changed files with 27 additions and 1 deletions
Showing only changes of commit 55daa2d02b - Show all commits

View File

@ -1,5 +1,4 @@
const models = require('vn-loopback/server/server').models;
const LoopBackContext = require('loopback-context');
const UserError = require('vn-loopback/util/user-error');
describe('workerTimeControl login()', () => {

View File

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