tape-dispenser

0.2.0 • Public • Published

tape-dispenser

Tape with promise and generator function support. Forked from blue-tape, and all credit should go to spion and substack.

usage with promises

Same as tape, except if you return a promise from a test, it will be checked for errors. If there are no errors, the test will end. Otherwise the test will fail. This means there is no need to use t.plan() or t.end()

example

assuming delay() returns a promise

test("simple delay", function(t) {
    return delay(1);
});
 
test("should fail", function(t) {
    return delay(1).then(function() {
        throw new Error("Failed!");
    });
});

Generators

If you're using a version of NodeJS that supports generator functions, you can test generators by passing a generator function as the tape callback function.

test("simple generator", function*(t) { // <-- Note the function* callback
  var asyncResult = yield yieldableFunction();
  t.ok(asyncResult.status, "Yield resolved to a status object");
})

license

MIT

Package Sidebar

Install

npm i tape-dispenser

Weekly Downloads

0

Version

0.2.0

License

MIT

Last publish

Collaborators

  • howlingeverett