0.2.3 • Published 5 years ago
tap-diff2 v0.2.3
tap-diff2
The most human-friendly TAP reporter.
this is a fork of tap-diff which makes object diffs clearer by deterministically sorting before diff


How to use
You can use tap-diff in the same way as other TAP reporters.
npm install -g tap-difftape ./*.test.js | tap-difftap-diff uses chalk for adding color, which automatically detects color terminals. If you're piping the output and want to force color:
FORCE_COLOR=t tape ./*.test.js | tap-diffOr use with createStream():
'use strict'
const test = require('tape')
const tapDiff = require('tap-diff')
test.createStream()
.pipe(tapDiff())
.pipe(process.stdout)
test('timing test', (t) => {
t.plan(2)
t.equal(typeof Date.now, 'function')
var start = Date.now()
setTimeout(() => {
t.equal(Date.now() - start, 100)
}, 100)
})License
MIT