UNPKG

263 BJavaScriptView Raw
1var tap = require('tap');
2var tape = require('../');
3
4tap.test('on finish', {timeout: 1000}, function (tt) {
5 tt.plan(1);
6 tape.onFinish(function () {
7 tt.pass('tape ended');
8 });
9 tape('dummy test', function (t) {
10 t.end();
11 });
12});