You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
1163
1163
1164
-
### HTML
1164
+
### XUnit
1165
1165
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.
1167
1167
1168
-
{:class="screenshot"}
1168
+
By default, it will output to the console. To write directly to a file, use `--reporter-options output=filename.xml`.
1169
1169
1170
-
### Undocumented Reporters
1170
+
### Third-Party Reporters
1171
1171
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).
1173
1173
1174
-
### Third party reporters
1174
+
### HTML Reporter
1175
1175
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.**
1177
1177
1178
1178
## Running Mocha in the Browser
1179
1179
@@ -1246,6 +1246,14 @@ The following option(s) *only* function in a browser context:
1246
1246
1247
1247
`noHighlighting`: If set to `true`, do not attempt to use syntax highlighting on output test code.
1248
1248
1249
+
### Reporting
1250
+
1251
+
The "HTML" reporter is what you see when running Mocha in the browser. It looks like this:
1252
+
1253
+
{:class="screenshot"}
1254
+
1255
+
[Mochawesome](https://www.npmjs.com/package/mochawesome) is a great alternative to the default HTML reporter.
1256
+
1249
1257
## `mocha.opts`
1250
1258
1251
1259
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