coronamap/node_modules/tape/test/nested2.js
2020-06-14 00:00:00 -07:00

19 lines
320 B
JavaScript

var test = require('../');
test(function (t) {
var i = 0;
t.test('setup', function (t) {
process.nextTick(function () {
t.equal(i, 0, 'called once');
i++;
t.end();
});
});
t.test('teardown', function (t) {
t.end();
});
t.end();
});