From 67686ebc81612751a6121785f8e926cc9520fba5 Mon Sep 17 00:00:00 2001 From: Lindsay-Needs-Sleep Date: Mon, 23 Sep 2019 05:16:46 -0600 Subject: [PATCH] Added documentation regarding the available options for mocha in browser. Add the JSON Stream name that is recommended in the documentation as an alias for the json-stream recommender. Issue #1592 (You can specify a the constructor of your custom reporter in options and mocha will use it) --- docs/index.md | 30 ++++++++++++++++++++++++++++++ lib/mocha.js | 2 +- lib/reporters/index.js | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 5dac9ff173..d139a9bc8e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1574,6 +1574,36 @@ 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: diff --git a/lib/mocha.js b/lib/mocha.js index 6c8bf2561b..839a523111 100644 --- a/lib/mocha.js +++ b/lib/mocha.js @@ -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. diff --git a/lib/reporters/index.js b/lib/reporters/index.js index d3b5481e41..279e590cb7 100644 --- a/lib/reporters/index.js +++ b/lib/reporters/index.js @@ -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');