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

throw.js 186B

12345678910
  1. var falafel = require('falafel');
  2. var test = require('../');
  3. test('throw', function (t) {
  4. t.plan(2);
  5. setTimeout(function () {
  6. throw new Error('doom');
  7. }, 100);
  8. });