2021-03-18 16:19:31 -04:00
|
|
|
const chai = require('chai')
|
|
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
const sinon = require('sinon')
|
|
|
|
|
|
|
|
// Chai configuration
|
|
|
|
chai.should()
|
|
|
|
|
|
|
|
// Global stubs
|
|
|
|
const sandbox = sinon.createSandbox()
|
|
|
|
const stubs = {
|
|
|
|
logger: {
|
|
|
|
debug: sandbox.stub(),
|
|
|
|
log: sandbox.stub(),
|
|
|
|
info: sandbox.stub(),
|
|
|
|
warn: sandbox.stub(),
|
|
|
|
err: sandbox.stub(),
|
2021-07-13 07:04:45 -04:00
|
|
|
error: sandbox.stub(),
|
|
|
|
},
|
2021-03-18 16:19:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// SandboxedModule configuration
|
|
|
|
SandboxedModule.configure({
|
|
|
|
requires: {
|
2021-12-14 08:00:35 -05:00
|
|
|
'@overleaf/logger': stubs.logger,
|
2021-03-18 16:19:31 -04:00
|
|
|
},
|
2021-07-13 07:04:45 -04:00
|
|
|
globals: { Buffer, JSON, console, process },
|
2021-03-18 16:19:31 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
// Mocha hooks
|
|
|
|
exports.mochaHooks = {
|
|
|
|
beforeEach() {
|
|
|
|
this.logger = stubs.logger
|
|
|
|
},
|
|
|
|
|
|
|
|
afterEach() {
|
|
|
|
sandbox.reset()
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2021-03-18 16:19:31 -04:00
|
|
|
}
|