Compare commits

..

No commits in common. "57a77628dc3592d12ab8e32bee0fe30cf5e733f6" and "91c5da9022ab1742ace4bd01b1abb1f219fc05f0" have entirely different histories.

3 changed files with 1 additions and 29 deletions

View File

@ -1,2 +0,0 @@
ALTER TABLE vn.shelvingLog
MODIFY COLUMN changedModel enum('Shelving', 'ItemShelving') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT 'Shelving' NOT NULL;

View File

@ -1,4 +1,5 @@
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

@ -1,27 +0,0 @@
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();
});
});