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

123456789101112131415
  1. var test = require('../');
  2. test('plan should be optional', function (t) {
  3. t.pass('no plan here');
  4. t.end();
  5. });
  6. test('no plan async', function (t) {
  7. setTimeout(function () {
  8. t.pass('ok');
  9. t.end();
  10. }, 100);
  11. });
  12. // vim: set softtabstop=4 shiftwidth=4: