A super simple jest dot reporter, great for use within shells like emacs ;)
npm install jest-simple-dot-reporterNo dependencies, no interactive shell needed, just dots. Also this is nice because it won't swallow your console.logs.
You may install this package as a development dependency:
``bash`
npm install --save-dev jest-simple-dot-reporter
yarn add --dev jest-simple-dot-reporter
Configure Jest to use the reporter.
For example, create a jest.config.js file containing:
`javascript``
module.exports = {
"verbose": false,
"reporters": [
["jest-simple-dot-reporter", {"color": true}]
]
};