assert-tap

0.1.4 • Public • Published

assert-tap

build status

browser support

Assert module but outputs TAP

Example

var assert = require("assert-tap")("my example")
 
// use the assert api
assert.equal("one", "one")
 
// outputs TAP to console.
// it's that easy.
// make sure to call assert.end() to end your example
assert.end()

example with test interface

var test = require("assert-tap").test
 
test("my test", function (assert) {
    // some assertions
 
    // Now I am done
    assert.end()
})
 
test("my second test", function (assert) {
    // some assertions
 
    // can end asynchronously
    setTimeout(function () {
        assert.end()
    }, 500)
})

Installation

npm install assert-tap

Contributors

  • Raynos

MIT Licenced

Readme

Keywords

none

Package Sidebar

Install

npm i assert-tap

Weekly Downloads

3

Version

0.1.4

License

none

Last publish

Collaborators

  • raynos