Skip to content

Commit

Permalink
Added documentation regarding the available options for mocha in brow…
Browse files Browse the repository at this point in the history
…ser.

Add the JSON Stream name that is recommended in the documentation as an alias for the json-stream recommender.
Make references to a reporter's name more uniform.
Issue #1592 (You can specify a the constructor of your custom reporter in options and mocha will use it)
  • Loading branch information
Lindsay-Needs-Sleep committed Sep 24, 2019
1 parent eed38d7 commit 5bfbdb4
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 6 deletions.
40 changes: 36 additions & 4 deletions docs/index.md
Expand Up @@ -1391,13 +1391,13 @@ The "nyan" reporter is exactly what you might expect:

### TAP

The TAP reporter emits lines for a [Test-Anything-Protocol][] consumer.
The "TAP" reporter emits lines for a [Test-Anything-Protocol][] consumer.

![test anything protocol](images/reporter-tap.png?withoutEnlargement&resize=920,9999){:class="screenshot" lazyload="on"}

### Landing Strip

The Landing Strip (`landing`) reporter is a gimmicky test reporter simulating a plane landing :) unicode ftw
The Landing Strip ("landing") reporter is a gimmicky test reporter simulating a plane landing :) unicode ftw

![landing strip plane reporter](images/reporter-landing.png?withoutEnlargement&resize=920,9999){:class="screenshot" lazyload="on"}
![landing strip with failure](images/reporter-landing-fail.png?withoutEnlargement&resize=920,9999){:class="screenshot" lazyload="on"}
Expand Down Expand Up @@ -1488,7 +1488,7 @@ example, here is the Connect [test output][connect-test-output].

### XUnit

The `xunit` reporter is also available. It outputs an XUnit-compatible XML document, often applicable in CI servers.
The "xunit" reporter is also available. It outputs an XUnit-compatible XML document, often applicable in CI servers.

By default, it will output to the console. To write directly to a file, use `--reporter-options output=filename.xml`.

Expand Down Expand Up @@ -1574,6 +1574,38 @@ mocha.setup({
});
```

Available options:

```
allowUncaught {boolean} - Propagate uncaught errors?
asyncOnly {boolean} - Force `done` callback or promise?
bail {boolean} - Bail after first test failure?
checkLeaks {boolean} - If true, check leaks.
delay {boolean} - Delay root suite execution?
enableTimeouts {boolean} - Enable timeouts?
fgrep {string} - Test filter given string.
forbidOnly {boolean} - Tests marked `only` fail the suite?
forbidPending {boolean} - Pending tests fail the suite?
fullStackTrace {boolean} - Full stacktrace upon failure?
global {string[]} - Variables expected in global scope.
grep {RegExp|string} - Test filter given regular expression.
growl {boolean} - Enable desktop notifications?
hideDiff {boolean} - Suppress diffs from failures?
ignoreLeaks {boolean} - Ignore global leaks?
invert {boolean} - Invert test filter matches?
noHighlighting {boolean} - Disable syntax highlighting?
reporter {string|constructor} - Reporter** name or constructor.
reporterOption {Object} - Reporter settings object.
retries {number} - Number of times to retry failed tests.
slow {number} - Slow threshold value.
timeout {number|string} - Timeout threshold value.
ui {string} - Interface name.
color {boolean} - Color TTY output from reporter?
useInlineDiffs {boolean} - Use inline diffs?
```

\*\* Available built in reporters that can be referenced by name [here](#reporters), and recommended reporters for the browser [here](#reporting).

### Browser-specific Option(s)

The following option(s) _only_ function in a browser context:
Expand All @@ -1582,7 +1614,7 @@ The following option(s) _only_ function in a browser context:

### Reporting

The "HTML" reporter is what you see when running Mocha in the browser. It looks like this:
The "HTML" reporter is the default reporter when running Mocha in the browser. It looks like this:

![HTML test reporter](images/reporter-html.png?withoutEnlargement&resize=920,9999){:class="screenshot" lazyload="on"}

Expand Down
2 changes: 1 addition & 1 deletion lib/mocha.js
Expand Up @@ -83,7 +83,7 @@ exports.Test = require('./test');
* @param {boolean} [options.inlineDiffs] - Display inline diffs?
* @param {boolean} [options.invert] - Invert test filter matches?
* @param {boolean} [options.noHighlighting] - Disable syntax highlighting?
* @param {string} [options.reporter] - Reporter name.
* @param {string|constructor} [options.reporter] - Reporter name or constructor.
* @param {Object} [options.reporterOption] - Reporter settings object.
* @param {number} [options.retries] - Number of times to retry failed tests.
* @param {number} [options.slow] - Slow threshold value.
Expand Down
2 changes: 1 addition & 1 deletion lib/reporters/index.js
Expand Up @@ -16,4 +16,4 @@ exports.XUnit = exports.xunit = require('./xunit');
exports.Markdown = exports.markdown = require('./markdown');
exports.Progress = exports.progress = require('./progress');
exports.Landing = exports.landing = require('./landing');
exports.JSONStream = exports['json-stream'] = require('./json-stream');
exports.JSONStream = exports['json-stream'] = exports['JSON stream'] = require('./json-stream');

0 comments on commit 5bfbdb4

Please sign in to comment.