tree: 758093b703be08ee344bee154d5e7ed1ef75708c [path history] [tgz]
  1. lib/
  2. node_modules/
  3. index.js
  4. LICENSE
  5. package.json
  6. README.md
node_modules/tap-mocha-reporter/README.md

tap-mocha-reporter

Format a TAP stream using Mocha's set of reporters

USAGE

On the command line, pipe TAP in, and it'll do its thing.

tap test/*.js | tap-mocha-reporter

You can also specify a reporter with the first argument. The default is spec.

tap test/*.js | tap-mocha-reporter nyan

Programmatically, you can use this as a transform stream.

var TSR = require('tap-mocha-reporter')

fs.createReadStream('saved-test-output.tap')
  .pipe(TSR('dot'))