https://github.com/pierreroth64/jest-progress-bar-reporter
Progress bar reporter for Jest
https://github.com/pierreroth64/jest-progress-bar-reporter
javascript jest nodejs progress-bar reporter
Last synced: 9 days ago
JSON representation
Progress bar reporter for Jest
- Host: GitHub
- URL: https://github.com/pierreroth64/jest-progress-bar-reporter
- Owner: pierreroth64
- License: mit
- Created: 2020-02-12T14:41:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:32:12.000Z (over 2 years ago)
- Last Synced: 2025-03-19T03:11:12.364Z (about 1 month ago)
- Topics: javascript, jest, nodejs, progress-bar, reporter
- Language: JavaScript
- Homepage:
- Size: 326 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-jest - jest-progress-bar-reporter
README
# Progress bar reporter for jest [](https://travis-ci.org/pierreroth64/jest-progress-bar-reporter) [](https://badge.fury.io/js/jest-progress-bar-reporter) [](https://www.npmjs.com/package/jest-progress-bar-reporter) [](https://github.com/prettier/prettier)
## Installation
You may install this package as a development dependency:
```bash
npm install --save-dev jest-progress-bar-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,
testPathIgnorePatterns: ['/node_modules/'],
reporters: ['jest-progress-bar-reporter']
};
```You can checkout the expected output:
```bash
git clone https://github.com/pierreroth64/jest-progress-bar-reporter.git
cd jest-progress-bar-reporter
npm install
npm run example
```