Reporting

With Chimp you can specify the reporter used to generate test results in each of the integrated frameworks.

Mocha

If you are using Mocha, you can set the mochaReporter option in your chimp configuration to any of the official reporters listed here or one that you have installed from NPM.

From the command line:

chimp --mocha --mochaReporter="nyan"

Or from your configuration file:

{
  mocha: true,
  mochaReporter: "progress"
}

Due to some limitations in the Mocha framework, you are only able to use one reporter per test run. One workaround for this is to combine reporters, take a look at an example of this here.