overleaf/services/real-time/test/setup.js

39 lines
701 B
JavaScript
Raw Normal View History

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(),
},
}
// SandboxedModule configuration
SandboxedModule.configure({
requires: {
2021-07-13 07:04:45 -04:00
'logger-sharelatex': stubs.logger,
},
2021-07-13 07:04:45 -04:00
globals: { Buffer, JSON, console, process },
})
// Mocha hooks
exports.mochaHooks = {
beforeEach() {
this.logger = stubs.logger
},
afterEach() {
sandbox.reset()
2021-07-13 07:04:45 -04:00
},
}