suman icon indicating copy to clipboard operation
suman copied to clipboard

reporter options

Open ORESoftware opened this issue 7 years ago • 0 comments

from: https://github.com/stanleyhlng/mocha-multi-reporters

var mocha = new Mocha({
      reporter: "mocha-multi-reporters",
      timeout: config.testTimeout || 60000,
      slow: config.slow || 10000,
      reporterOptions: {
          "reporterEnabled": "mocha-junit-reporter, tap",
          "mochaJunitReporterReporterOptions": {
              "mochaFile": "junit-custom.xml"
          }
      }
    });
    mocha.addFile(...)
    mocha.run(...)

ORESoftware avatar Dec 29 '17 04:12 ORESoftware