0.1.4 • Published 5 years ago
tap-spec-dot v0.1.4
Forked tap-spec TAP reporter, but with dots for passing tests

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