mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 22:29:01 +02:00
c3c04acfea
* [web] add junit integration for Jenkins * [web] integrate junit test report for writefull into Jenkins * [web] put all the junit test results into namespaces GitOrigin-RevId: ba1ff07b5ea7bcfa97bb4d6bf7fa9e5291ab7b0f
9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
let reporterOptions = {}
|
|
if (process.env.CI && process.env.MOCHA_ROOT_SUITE_NAME) {
|
|
reporterOptions = {
|
|
reporter: '/overleaf/node_modules/mocha-multi-reporters',
|
|
'reporter-options': ['configFile=./test/mocha-multi-reporters.js'],
|
|
}
|
|
}
|
|
module.exports = reporterOptions
|