0.0.1 • Published 9 years ago

tapef v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

tapef

Tape bred uncermoniously with Mocha. Literally Mocha's reporter hacked into Tape.

The way I use this is to drop it in temporarily as a debugging tool when comparing big objects or strings, then switch back to vanilla Tape when I'm done.

Caveats

Doesn't play well alongside other Tape tests just yet.

Usage

Just replace require('tape') with require('tapef').

var test = require('tapef')

// Exactly the same api as Tape.
test('equal numbers', function(t) {
  t.equal(1, 2)
  t.end()
})

test('equal string', function(t) {
  var a = 'apple'
  var b = 'banana'
  t.equal(a, b)
  t.end()
})

// etc

Output

image

image

image

License

MIT