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

subcount.js 277B

1234567891011121314
  1. var test = require('../');
  2. test('parent test', function (t) {
  3. t.plan(2);
  4. t.test('first child', function (t) {
  5. t.plan(1);
  6. t.pass('pass first child');
  7. });
  8. t.test(function (t) {
  9. t.plan(1);
  10. t.pass('pass second child');
  11. });
  12. });