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

12345678910111213141516171819
  1. var test = require('../');
  2. test(function (t) {
  3. var i = 0;
  4. t.test('setup', function (t) {
  5. process.nextTick(function () {
  6. t.equal(i, 0, 'called once');
  7. i++;
  8. t.end();
  9. });
  10. });
  11. t.test('teardown', function (t) {
  12. t.end();
  13. });
  14. t.end();
  15. });