File tree 1 file changed +20
-3
lines changed
1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -164,10 +164,20 @@ tap.test('failures', function (tt) {
164
164
+ 'ok 12 getter is still the same\n'
165
165
+ '# throws null\n'
166
166
+ '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'
169
179
+ '# pass 4\n'
170
- + '# fail 9 \n'
180
+ + '# fail 10 \n'
171
181
) ;
172
182
} ) ) ;
173
183
@@ -200,4 +210,11 @@ tap.test('failures', function (tt) {
200
210
t . throws ( function ( ) { throw null ; } , 'throws null' ) ;
201
211
t . end ( ) ;
202
212
} ) ;
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
+ } ) ;
203
220
} ) ;
You can’t perform that action at this time.
0 commit comments