mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11261a0cb9
Configure SanboxedModule and chai in a central place. Configure SandboxedModule globals that are needed in Node 12.
21 lines
400 B
JavaScript
21 lines
400 B
JavaScript
const chai = require('chai')
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
// Chai configuration
|
|
chai.should()
|
|
|
|
// SandboxedModule configuration
|
|
SandboxedModule.configure({
|
|
requires: {
|
|
'logger-sharelatex': {
|
|
debug() {},
|
|
log() {},
|
|
info() {},
|
|
warn() {},
|
|
err() {},
|
|
error() {},
|
|
fatal() {}
|
|
}
|
|
},
|
|
globals: { Buffer, JSON, console, process }
|
|
})
|