mocha-suppress-logs
v0.6.0
Published
Suppress console output of successful mocha tests.
Maintainers
Readme
Mocha Suppress Logs
Suppress console output of successful mocha tests.
Ideal if you want to keep your test's report clean while still being able to debug the output of failed tests.
Note: For mocha version 7 or earlier, you must use version 0.2.0 of this package.
Requirements
- mocha (8.0.0 or higher)
Installation
npm install --save-dev mocha-suppress-logsUsage
Simply require mocha-suppress-logs when running mocha:
mocha --require mocha-suppress-logsOr put it in your .mocharc to make it default behavior:
{
"require": "mocha-suppress-logs"
}