0.0.5 • Published 3 years ago

jest-simplified-reporter v0.0.5

Weekly downloads
1
License
ISC
Repository
github
Last release
3 years ago

jest-simplified-reporter

Requirements

//jest.config.js
coverageProvider: "v8"

your test command must also collect coverage.

Install

npm i --save-dev jest-simplified-reporter 
//jest.config.js
reporters: [['jest-simplified-reporter', {path: './path/where/you/want/stored/fileName.json'}]]

//or

//default path is ./jest-simplified-reporter/results.json
reporters: ['jest-simplified-reporter']

Example

git clone https://github.com/zedgell/jest-simplified-reporter.git
cd jest-simplified-reporter
npm i
npm run test