https://github.com/kevlened/jest-dot-reporter
Simple Jest Dot reporter
https://github.com/kevlened/jest-dot-reporter
Last synced: 7 months ago
JSON representation
Simple Jest Dot reporter
- Host: GitHub
- URL: https://github.com/kevlened/jest-dot-reporter
- Owner: kevlened
- License: mit
- Created: 2018-03-29T17:37:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-29T17:48:21.000Z (over 7 years ago)
- Last Synced: 2025-01-21T05:42:35.652Z (9 months ago)
- Language: JavaScript
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple dot reporter for jest [](https://travis-ci.org/pierreroth64/jest-dot-reporter) [](https://badge.fury.io/js/jest-dot-reporter)
## Installation
You may install this package as a development dependency:
```bash
npm install --save-dev jest-dot-reporter
```⚠ Tested with Node 8.4 and Jest 21.2.1
## 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,
testPathIgnorePatterns: [
'/node_modules/',
],
reporters: [
'jest-dot-reporter'
]
};
```You can checkout the expected output:
```bash
git clone https://github.com/pierreroth64/jest-dot-reporter.git
cd jest-dot-reporter
npm install
npm run example
```