@@ -234,8 +234,6 @@ describe('breadcrumbs', function () {
234
234
assert . equal ( summary . breadcrumbHints . length , 1 ) ;
235
235
assert . equal ( summary . breadcrumbHints [ 0 ] . name , 'click' ) ;
236
236
assert . equal ( summary . breadcrumbHints [ 0 ] . event . target . tagName , 'INPUT' ) ;
237
- // There should be no expection, if there is one it means we threw it
238
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
239
237
}
240
238
} ) ;
241
239
} ) ;
@@ -265,9 +263,6 @@ describe('breadcrumbs', function () {
265
263
266
264
assert . equal ( summary . breadcrumbs [ 1 ] . category , 'ui.input' ) ;
267
265
assert . equal ( summary . breadcrumbs [ 1 ] . message , 'body > form#foo-form > input[name="foo"]' ) ;
268
-
269
- // There should be no expection, if there is one it means we threw it
270
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
271
266
}
272
267
} ) ;
273
268
} ) ;
@@ -288,8 +283,6 @@ describe('breadcrumbs', function () {
288
283
// The async loader doesn't wrap event listeners, but we should receive the event without breadcrumbs
289
284
assert . lengthOf ( summary . events , 1 ) ;
290
285
} else {
291
- // There should be no expection, if there is one it means we threw it
292
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
293
286
assert . equal ( summary . breadcrumbs . length , 0 ) ;
294
287
}
295
288
} ) ;
@@ -309,8 +302,6 @@ describe('breadcrumbs', function () {
309
302
// The async loader doesn't wrap event listeners, but we should receive the event without breadcrumbs
310
303
assert . lengthOf ( summary . events , 1 ) ;
311
304
} else {
312
- // There should be no expection, if there is one it means we threw it
313
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
314
305
assert . equal ( summary . breadcrumbs . length , 0 ) ;
315
306
}
316
307
} ) ;
@@ -472,7 +463,6 @@ describe('breadcrumbs', function () {
472
463
assert . equal ( summary . breadcrumbs [ 0 ] . message , 'body > form#foo-form > input[name="foo"]' ) ;
473
464
assert . equal ( summary . breadcrumbHints [ 0 ] . global , false ) ;
474
465
assert . equal ( summary . breadcrumbHints [ 1 ] . global , false ) ;
475
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
476
466
}
477
467
} ) ;
478
468
} ) ;
@@ -507,7 +497,6 @@ describe('breadcrumbs', function () {
507
497
assert . equal ( summary . breadcrumbs [ 0 ] . message , 'body > form#foo-form > input[name="foo"]' ) ;
508
498
assert . equal ( summary . breadcrumbHints [ 0 ] . global , false ) ;
509
499
assert . equal ( summary . breadcrumbHints [ 1 ] . global , false ) ;
510
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
511
500
}
512
501
} ) ;
513
502
} ) ;
@@ -538,7 +527,6 @@ describe('breadcrumbs', function () {
538
527
assert . equal ( summary . breadcrumbs [ 1 ] . message , 'body > form#foo-form > div.contenteditable' ) ;
539
528
assert . equal ( summary . breadcrumbHints [ 0 ] . global , false ) ;
540
529
assert . equal ( summary . breadcrumbHints [ 1 ] . global , false ) ;
541
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
542
530
}
543
531
} ) ;
544
532
} ) ;
@@ -706,7 +694,6 @@ describe('breadcrumbs', function () {
706
694
assert . equal ( summary . breadcrumbs . length , 2 ) ;
707
695
assert . equal ( summary . breadcrumbHints [ 0 ] . global , true ) ;
708
696
assert . equal ( summary . breadcrumbHints [ 1 ] . global , true ) ;
709
- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
710
697
}
711
698
} ) ;
712
699
} ) ;
0 commit comments