Name: js-handler/node_modules/nodeunit/node_modules/tap/test/end-exception/t.js 
1:
var test = require("../../").test
2:
 
3:
test(function (t) {
4:
  t.plan(1)
5:
 
6:
  t.on('end', function () {
7:
    console.log('end()')
8:
    throw new Error('beep')
9:
  })
10:
 
11:
  t.equal(3, 3)
12:
})