Skip to content

Commit bca57f4

Browse files
committed
clarify docs on html, xunit and 3p reporters; closes #1906
1 parent 2fe2d01 commit bca57f4

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

docs/index.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -1161,19 +1161,19 @@ View SuperAgent's [Makefile](https://github.com/visionmedia/superagent/blob/mast
11611161

11621162
The "markdown" reporter generates a markdown TOC and body for your test suite. This is great if you want to use the tests as documentation within a Github wiki page, or a markdown file in the repository that Github can render. For example here is the Connect [test output](https://github.com/senchalabs/connect/blob/90a725343c2945aaee637e799b1cd11e065b2bff/tests.md).
11631163

1164-
### HTML
1164+
### XUnit
11651165

1166-
The "HTML" reporter is currently the only browser reporter supported by Mocha, and it looks like this:
1166+
The `xunit` reporter is also available. It outputs an XUnit-compatible XML document, often applicable in CI servers.
11671167

1168-
![HTML test reporter](images/reporter-html.png?withoutEnlargement&resize=920,9999){:class="screenshot"}
1168+
By default, it will output to the console. To write directly to a file, use `--reporter-options output=filename.xml`.
11691169

1170-
### Undocumented Reporters
1170+
### Third-Party Reporters
11711171

1172-
The "XUnit" reporter is also available. By default, it will output to the console. To write directly to a file, use `--reporter-options output=filename.xml`.
1172+
Mocha allows you to define custom reporters. For more information see the [wiki](https://github.com/mochajs/mocha/wiki/Third-party-reporters). An example is the [TeamCity reporter](https://github.com/travisjeffery/mocha-teamcity-reporter).
11731173

1174-
### Third party reporters
1174+
### HTML Reporter
11751175

1176-
Mocha allows you to define custom third-party reporters. For more information see the [wiki](https://github.com/mochajs/mocha/wiki/Third-party-reporters). An example is the [TeamCity reporter](https://github.com/travisjeffery/mocha-teamcity-reporter).
1176+
**The HTML reporter is not intended for use on the command-line.**
11771177

11781178
## Running Mocha in the Browser
11791179

@@ -1246,6 +1246,14 @@ The following option(s) *only* function in a browser context:
12461246

12471247
`noHighlighting`: If set to `true`, do not attempt to use syntax highlighting on output test code.
12481248

1249+
### Reporting
1250+
1251+
The "HTML" reporter is what you see when running Mocha in the browser. It looks like this:
1252+
1253+
![HTML test reporter](images/reporter-html.png?withoutEnlargement&resize=920,9999){:class="screenshot"}
1254+
1255+
[Mochawesome](https://www.npmjs.com/package/mochawesome) is a great alternative to the default HTML reporter.
1256+
12491257
## `mocha.opts`
12501258

12511259
Back on the server, Mocha will attempt to load `./test/mocha.opts` as a configuration file of sorts. The lines in this file are combined with any command-line arguments. The command-line arguments take precedence. For example, suppose you have the following `mocha.opts` file:

0 commit comments

Comments
 (0)