forgeplus-react/node_modules/tape/test/many.js

11 lines
192 B
JavaScript

'use strict';
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);
}
});