tap-vibrant
v0.1.1
Published
Receives streaming TAP and outputs a colorful, indented representation.
Downloads
11
Maintainers
Readme
tap-vibrant
Receives streaming TAP and outputs a colorful, indented representation.
Similar to tap-spec without any summary at the end. It just formats blocks of TAP. This package is a building block for a full TAP reporter like tap-dapper.
install
npm install tap-vibrant
example
tape **/*.test.js | tap-vibrant
const vibrant = require('tap-vibrant')
process.stdin
.pipe(vibrant())
.pipe(process.stdout)