QUnit.config.reporters
version added: 2.24.0.
Description
Control which reporters to enable or disable.
type | Object<string,bool> |
---|---|
default | {} |
Built-in reporters
Example
Enable TAP in the browser via preconfig:
// Set as global variable before loading qunit.js
qunit_config_reporters_tap = true;
Or, via QUnit.config:
// Set from any inline script or JS file after qunit.js
QUnit.config.reporters.tap = true;