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

add-subtest-async.js 230B

1234567891011
  1. var test = require('../');
  2. test('parent', function (t) {
  3. t.pass('parent');
  4. setTimeout(function () {
  5. t.test('child', function (st) {
  6. st.pass('child');
  7. st.end();
  8. });
  9. }, 100);
  10. });