tape-unsummarize
v1.1.2
Published
Filters out the diagnostic summary lines output by [tape](https://www.npmjs.com/package/tape).
Downloads
8
Maintainers
Readme
tape-unsummarize
Filters out the diagnostic summary lines output by tape.
install
npm install tape-unsummarize
example
$ tape **/*.test.js
TAP version 13
# test 1
ok 1 should be equal
# test 2
ok 2 should be equal
1..2
# tests 2
# pass 2
# ok
$ tape **/*.test.js | tape-unsummarize
TAP version 13
# test 1
ok 1 should be equal
# test 2
ok 2 should be equal
1..2
const unSummarize = require('tape-unsummarize')
runTests()
.pipe(unSummarize)
.pipe(process.stdout)