npm.io
1.1.2 • Published 9 years agoCLI

tape-unsummarize

Licence
CC0-1.0
Version
1.1.2
Deps
5
Vulns
0
Weekly
0

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)

Keywords