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

9 lines
192 B
Java

var test = require('../');
test('many tests', function (t) {
t.plan(100);
for (var i = 0; i < 100; i++) {
setTimeout(function () { t.pass(); }, Math.random() * 50);
}
});