Jest reporter that uses stdout for messages and stderr for errors
npm install jest-standard-reporter!npm
!npm bundle size
!downloads
!mit
!keywords
Jest reporter
that uses stdout for messages and stderr for errors.
Using npm:
``sh`
npm install --save-dev jest-standard-reporter
Using yarn:
`sh`
yarn add --dev jest-standard-reporter
Jest CLI:
`sh`
jest --reporters=jest-standard-reporter
Jest config:
`json`
{
"reporters": ["jest-standard-reporter"]
}
Supports the following Jest configurations:
Jest uses stderr to print the results of the tests (as opposed to stdout; see issue #5064). Many CI tools mark any output coming from stderr as a failure, making builds to fail even when the tests pass (false positive).
This reporter uses stdout to print messages and only uses stderr when an error is thrown.
If you chose to, you could override this behavior using the useStderr` flag.
MIT