mirror of
https://github.com/overleaf/overleaf.git
synced 2025-12-05 01:10:29 +00:00
* [monorepo] refactor retries in Jenkins to step level Change the junit reports to use step specific file names. The [hash] template option was neat in getting unique file names, but results in duplicate test reports on retry. * [patches] add support for .cjs config files for mocha-multi-reporters GitOrigin-RevId: 3a749441470b5ba633e71319589606cfbe860952
11 lines
348 B
JavaScript
11 lines
348 B
JavaScript
module.exports = {
|
|
reporterEnabled: 'spec, mocha-junit-reporter',
|
|
mochaJunitReporterReporterOptions: {
|
|
mochaFile: `cypress-reports/junit-${process.env.CYPRESS_SHARD}-[suiteFilename].xml`,
|
|
includePending: true,
|
|
jenkinsMode: true,
|
|
jenkinsClassnamePrefix: 'Server Pro E2E tests',
|
|
rootSuiteTitle: 'Server Pro E2E tests',
|
|
},
|
|
}
|