Installation
You may install this package as a development dependency:
npm install --save-dev jest-dot-reporter
Configuration
Configure Jest to use the reporter.
For example, create a jest.config.js
file containing:
moduleexports = verbose: false testPathIgnorePatterns: '/node_modules/' reporters: 'jest-dot-reporter';
You can checkout the expected output:
git clone https://github.com/pierreroth64/jest-dot-reporter.gitcd jest-dot-reporternpm installnpm run example