* [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
12 lines
411 B
JavaScript
12 lines
411 B
JavaScript
module.exports = {
|
|
reporterEnabled: 'spec, mocha-junit-reporter',
|
|
mochaJunitReporterReporterOptions: {
|
|
mochaFile: `data/reports/junit-mocha-${process.env.JUNIT_ROOT_SUITE_NAME}-${process.env.MODULE_NAME}.xml`,
|
|
includePending: true,
|
|
jenkinsMode: true,
|
|
jenkinsClassnamePrefix: process.env.JUNIT_ROOT_SUITE_NAME,
|
|
rootSuiteTitle: process.env.JUNIT_ROOT_SUITE_NAME,
|
|
outputs: true,
|
|
},
|
|
}
|