Skip to content

Commit 44cbbf5

Browse files
committed
[Tests] add a test for the wrong kind of error
Related to #479.
1 parent 2b5046e commit 44cbbf5

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

test/throws.js

+20-3
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,20 @@ tap.test('failures', function (tt) {
164164
+ 'ok 12 getter is still the same\n'
165165
+ '# throws null\n'
166166
+ 'ok 13 throws null\n'
167-
+ '\n1..13\n'
168-
+ '# tests 13\n'
167+
+ '# wrong type of error\n'
168+
+ 'not ok 14 throws actual\n'
169+
+ ' ---\n'
170+
+ ' operator: throws\n'
171+
+ ' expected: |-\n'
172+
+ ' [Function: TypeError]\n'
173+
+ ' actual: |-\n'
174+
+ ' [Function: RangeError]\n'
175+
+ ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
176+
+ ' ...\n'
177+
+ '\n1..14\n'
178+
+ '# tests 14\n'
169179
+ '# pass 4\n'
170-
+ '# fail 9\n'
180+
+ '# fail 10\n'
171181
);
172182
}));
173183

@@ -200,4 +210,11 @@ tap.test('failures', function (tt) {
200210
t.throws(function () { throw null; }, 'throws null');
201211
t.end();
202212
});
213+
214+
test('wrong type of error', function (t) {
215+
t.plan(1);
216+
var actual = new RangeError('actual!');
217+
t.throws(function () { throw actual; }, TypeError, 'throws actual');
218+
t.end();
219+
});
203220
});

0 commit comments

Comments
 (0)