mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
* [web] override timeout for a specific template * [web] fix junit integration for vitest * [web] consolidate on JUNIT_ROOT_SUITE_NAME * [web] fix unit test GitOrigin-RevId: 3ba865e4b9c090c7bf8e07dc3d81e9bcee20d821
9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
let reporterOptions = {}
|
|
if (process.env.CI && process.env.JUNIT_ROOT_SUITE_NAME) {
|
|
reporterOptions = {
|
|
reporter: '/overleaf/node_modules/mocha-multi-reporters',
|
|
'reporter-options': ['configFile=./test/mocha-multi-reporters.js'],
|
|
}
|
|
}
|
|
module.exports = reporterOptions
|