1.0.2 • Published 6 years ago
jest-simple-emoji-reporter v1.0.2
Installation
Install jest-simple-emoji-reporter using yarn
:
yarn add --dev jest-simple-emoji-reporter
Or via npm
:
npm install --save-dev jest-simple-emoji-reporter
Configuration
Configure Jest to use the reporter.
For example, create a jest.config.js
file containing:
module.exports = {
verbose: false,
reporters: [
'jest-simple-emoji-reporter'
]
};
Or add it to your Jest configuration within your package.json
// package.json
{
"name": "my-project",
"jest": {
"verbose": false,
reporters: [
'jest-simple-emoji-reporter'
]
}
}
Credit
This package is a modified version of jodonnell's jest-simple-dot-reporter.