commando.html5/node_modules/tap/test-disabled/t.js
Captain Nick Lucifer* a0bc2d79de dot.dot.dot.exampol
2023-03-10 23:21:16 +05:45

16 lines
272 B
JavaScript

var test = require('tap').test;
function foo() {
throw new Error('one');
}
test('demonstrate bug in t.throws', function (t) {
t.throws(
function () {
foo();
},
new Error('two')),
// "this should throw",
// {}); // not 'one'!
t.end();
});