feat(salix): refs #6436 #6436 remove unnecessary object.assign
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2024-06-26 09:35:18 +02:00
parent 95a23ad9fc
commit b4afb883fc
1 changed files with 2 additions and 8 deletions

View File

@ -27,13 +27,7 @@ const default_loopback_ctx = userId => {
};
function vnBeforeAll() {
Object.assign(beforeAll, {getCtx: default_before_all});
Object.assign(beforeAll, {mockLoopBackContext});
}
function mockBeforeAll(value = default_before_all) {
const origin = beforeAll.ctx;
Object.assign(origin, value);
return origin;
Object.assign(beforeAll, {getCtx: default_before_all, mockLoopBackContext});
}
const mockLoopBackContext = userId => {
@ -46,7 +40,7 @@ const mockLoopBackContext = userId => {
return activeCtx;
};
module.exports = {
mockBeforeAll, mockLoopBackContext
mockLoopBackContext
};
(function init() {