NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/test/add-subtest-async.js

12 lines
230 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
var test = require('../');
test('parent', function (t) {
t.pass('parent');
setTimeout(function () {
t.test('child', function (st) {
st.pass('child');
st.end();
});
}, 100);
});