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

timing.js 234B

123456789101112
  1. var test = require('../');
  2. test('timing test', function (t) {
  3. t.plan(2);
  4. t.equal(typeof Date.now, 'function');
  5. var start = new Date;
  6. setTimeout(function () {
  7. t.equal(new Date - start, 100);
  8. }, 100);
  9. });