coronamap/node_modules/tape/test/nested2.js
2022-08-06 08:12:21 -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();
});