coronamap/node_modules/tape/test/many.js
2022-08-06 08:09:54 -07:00

8 lines
192 B
JavaScript

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