NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/test/nested2.js
2023-09-14 14:47:11 +08:00

20 lines
320 B
Java

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();
});