Skip to content

Commit 37f79d2

Browse files
author
James Halliday
committed
throw test passes
1 parent c8e11e1 commit 37f79d2

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

lib/test.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,15 @@ function Test (name_, opts_, cb_) {
3737

3838
Test.prototype.run = function () {
3939
if (this._skip) {
40-
this.end();
41-
} else {
40+
return this.end();
41+
}
42+
try {
4243
this._cb(this);
4344
}
45+
catch (err) {
46+
this.error(err);
47+
this.end();
48+
}
4449
};
4550

4651
Test.prototype.test = function (name, opts, cb) {

test/throw.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var tap = require('tap');
55
tap.test('throw test', function (tt) {
66
tt.plan(1);
77

8-
var test = tape.createHarness();
8+
var test = tape.createHarness({ exit : false });
99
var tc = tap.createConsumer();
1010

1111
var rows = [];
@@ -20,11 +20,11 @@ tap.test('throw test', function (tt) {
2020
tt.same(rs, [
2121
'TAP version 13',
2222
'thrower',
23-
{ id: 1, ok: true, name: 'should be equivalent' },
24-
{ id: 2, ok: false, name: 'Error: rawr' },
23+
{ id: 1, ok: true, name: 'should be equal' },
24+
{ id: 2, ok: false, name: 'rawr' },
2525
'tests 2',
26-
'pass 1',
27-
'fail 1',
26+
'pass 1',
27+
'fail 1',
2828
]);
2929
});
3030

0 commit comments

Comments
 (0)