throw_fail.js 152 B

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