Skip to content

substack's tape test runner with promise and generator function support

Notifications You must be signed in to change notification settings

HowlingEverett/tape-dispenser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

substack's tape test runner with promise and generator function support

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%