0.0.3 • Published 7 years ago
ddry-tap-spec v0.0.3
ddry-tap-spec
Formatted TAP output like Mocha's spec reporter
This clone of tap-spec is published to get global access to pending specs formatting feature while corresponding PR on the main project is not yet accepted.

Install
npm install ddry-tap-spec --save-devUsage
Streaming
var test = require('tape');
var tapSpec = require('ddry-tap-spec');
test.createStream()
  .pipe(tapSpec())
  .pipe(process.stdout);CLI
package.json
{
  "name": "module-name",
  "scripts": {
    "test": "node ./test/tap-test.js | tap-spec"
  }
}Then run with npm test
Terminal
tape test/index.js | node_modules/.bin/tap-specTestling
npm install testling -g
testling test/index.js | node_modules/.bin/tap-spec