mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[copybara] publish mongo-utils library GitOrigin-RevId: 0ef269f186ed645f7bcb9d948a4d1e591c687b31
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
const chai = require('chai')
|
|
const sinonChai = require('sinon-chai')
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
// Chai configuration
|
|
chai.should()
|
|
chai.use(sinonChai)
|
|
|
|
SandboxedModule.configure({
|
|
globals: { Buffer, JSON, console, process },
|
|
})
|