Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

12345678
  1. var test = require('../');
  2. test('many tests', function (t) {
  3. t.plan(100);
  4. for (var i = 0; i < 100; i++) {
  5. setTimeout(function () { t.pass(); }, Math.random() * 50);
  6. }
  7. });