Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jodonnell/jest-simple-dot-reporter
https://github.com/jodonnell/jest-simple-dot-reporter
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jodonnell/jest-simple-dot-reporter
- Owner: jodonnell
- Created: 2017-11-17T03:40:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T14:51:25.000Z (almost 2 years ago)
- Last Synced: 2024-07-10T15:38:48.559Z (4 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 10
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-jest - jest-simple-dot-reporter - one dot per each test. (Packages / Reporters)
README
# Simple dot reporter for jest
No dependencies, no interactive shell needed, just dots. Also this is nice because it won't swallow your console.logs.
## Installation
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
```## Configuration
Configure [Jest](https://facebook.github.io/jest/docs/en/configuration.html) 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}]
]
};
```