auth-api/tests/node_modules/tape/test/many.js

11 lines
207 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'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);
}
});