.mocharc.cjs 292 B

12345678910111213
  1. let reporterOptions = {}
  2. if (process.env.CI) {
  3. reporterOptions = {
  4. reporter: require.resolve('mocha-multi-reporters'),
  5. 'reporter-options': ['configFile=./test/mocha-multi-reporters.cjs'],
  6. }
  7. }
  8. const all = {
  9. require: 'test/setup.js',
  10. ...reporterOptions,
  11. }
  12. module.exports = all