@@ -234,8 +234,6 @@ describe('breadcrumbs', function () {
234234 assert . equal ( summary . breadcrumbHints . length , 1 ) ;
235235 assert . equal ( summary . breadcrumbHints [ 0 ] . name , 'click' ) ;
236236 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 ) ;
239237 }
240238 } ) ;
241239 } ) ;
@@ -265,9 +263,6 @@ describe('breadcrumbs', function () {
265263
266264 assert . equal ( summary . breadcrumbs [ 1 ] . category , 'ui.input' ) ;
267265 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 ) ;
271266 }
272267 } ) ;
273268 } ) ;
@@ -288,8 +283,6 @@ describe('breadcrumbs', function () {
288283 // The async loader doesn't wrap event listeners, but we should receive the event without breadcrumbs
289284 assert . lengthOf ( summary . events , 1 ) ;
290285 } else {
291- // There should be no expection, if there is one it means we threw it
292- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
293286 assert . equal ( summary . breadcrumbs . length , 0 ) ;
294287 }
295288 } ) ;
@@ -309,8 +302,6 @@ describe('breadcrumbs', function () {
309302 // The async loader doesn't wrap event listeners, but we should receive the event without breadcrumbs
310303 assert . lengthOf ( summary . events , 1 ) ;
311304 } else {
312- // There should be no expection, if there is one it means we threw it
313- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
314305 assert . equal ( summary . breadcrumbs . length , 0 ) ;
315306 }
316307 } ) ;
@@ -472,7 +463,6 @@ describe('breadcrumbs', function () {
472463 assert . equal ( summary . breadcrumbs [ 0 ] . message , 'body > form#foo-form > input[name="foo"]' ) ;
473464 assert . equal ( summary . breadcrumbHints [ 0 ] . global , false ) ;
474465 assert . equal ( summary . breadcrumbHints [ 1 ] . global , false ) ;
475- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
476466 }
477467 } ) ;
478468 } ) ;
@@ -507,7 +497,6 @@ describe('breadcrumbs', function () {
507497 assert . equal ( summary . breadcrumbs [ 0 ] . message , 'body > form#foo-form > input[name="foo"]' ) ;
508498 assert . equal ( summary . breadcrumbHints [ 0 ] . global , false ) ;
509499 assert . equal ( summary . breadcrumbHints [ 1 ] . global , false ) ;
510- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
511500 }
512501 } ) ;
513502 } ) ;
@@ -538,7 +527,6 @@ describe('breadcrumbs', function () {
538527 assert . equal ( summary . breadcrumbs [ 1 ] . message , 'body > form#foo-form > div.contenteditable' ) ;
539528 assert . equal ( summary . breadcrumbHints [ 0 ] . global , false ) ;
540529 assert . equal ( summary . breadcrumbHints [ 1 ] . global , false ) ;
541- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
542530 }
543531 } ) ;
544532 } ) ;
@@ -706,7 +694,6 @@ describe('breadcrumbs', function () {
706694 assert . equal ( summary . breadcrumbs . length , 2 ) ;
707695 assert . equal ( summary . breadcrumbHints [ 0 ] . global , true ) ;
708696 assert . equal ( summary . breadcrumbHints [ 1 ] . global , true ) ;
709- assert . isUndefined ( summary . events [ 0 ] . exception ) ;
710697 }
711698 } ) ;
712699 } ) ;
0 commit comments