coronamap/node_modules/tape/example/throw.js
2022-08-06 08:12:21 -07:00

11 lines
167 B
JavaScript

'use strict';
var test = require('../');
test('throw', function (t) {
t.plan(2);
setTimeout(function () {
throw new Error('doom');
}, 100);
});