0.1.1 • Published 7 years ago

tap-vibrant v0.1.1

Weekly downloads
10
License
CC0-1.0
Repository
github
Last release
7 years ago

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)