node-test-parser
v2.2.2
Published
Node.js test runner report stream parser
Downloads
33,938
Readme
node-test-parser
Installation
npm i -D node-test-parser
Usage
Create a custom test reporter using the parser:
// reporter.js
import parseReport from 'node-test-parser'
export default async function* jsonReporter(source) {
const report = await parseReport(source)
yield JSON.stringify(report, null, 2)
}
Run tests using the custom reporter:
node --test --test-reporter ./reporter.js