blob: 5b77fae29ee0d475a73d7471cd965a8a0dc73b20 [file] [log] [blame]
var tap = require("tap");
var tape = require("../");
tap.test("on finish", {timeout: 1000}, function (tt) {
tt.plan(1);
tape.onFinish(function() {
tt.pass('tape ended');
});
tape('dummy test', function(t) {
t.end();
});
});