mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
* [monorepo] migrate build scripts to Jenkins * [fraud-dash] fix integration with monorepo GitOrigin-RevId: 6a30ec5ea68a1eae9b663faf9ccdc741ec7f9cf8
14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
let reporterOptions = {}
|
|
if (process.env.CI) {
|
|
reporterOptions = {
|
|
reporter: '/overleaf/node_modules/mocha-multi-reporters',
|
|
'reporter-options': ['configFile=./test/mocha-multi-reporters.cjs'],
|
|
}
|
|
}
|
|
const all = {
|
|
require: 'test/setup.js',
|
|
...reporterOptions,
|
|
}
|
|
|
|
module.exports = all
|