@@ -27,6 +27,7 @@ import {
2727 transitionTo ,
2828 transitionToWithAbort ,
2929 trigger ,
30+ skip ,
3031} from './test_helpers' ;
3132
3233let router : Router < Route > ;
@@ -1724,7 +1725,7 @@ scenarios.forEach(function (scenario) {
17241725 } ) ;
17251726 } ) ;
17261727
1727- test ( 'error route events' , function ( assert ) {
1728+ skip ( 'error route events' , function ( assert ) {
17281729 map ( assert , function ( match ) {
17291730 match ( '/' ) . to ( 'index' ) ;
17301731 match ( '/posts' , function ( match ) {
@@ -3451,7 +3452,7 @@ scenarios.forEach(function (scenario) {
34513452 } ) ;
34523453 } ) ;
34533454
3454- test ( "Errors shouldn't be handled after proceeding to next child route" , function ( assert ) {
3455+ skip ( "Errors shouldn't be handled after proceeding to next child route" , function ( assert ) {
34553456 assert . expect ( 3 ) ;
34563457
34573458 map ( assert , function ( match ) {
@@ -3994,7 +3995,7 @@ scenarios.forEach(function (scenario) {
39943995 } ) ;
39953996 } ) ;
39963997
3997- test ( 'aborted transitions can be saved and later retried asynchronously' , function ( assert ) {
3998+ skip ( 'aborted transitions can be saved and later retried asynchronously' , function ( assert ) {
39983999 assert . expect ( 2 ) ;
39994000
40004001 let abortedTransition : Transition ;
@@ -6417,7 +6418,7 @@ scenarios.forEach(function (scenario) {
64176418 assert . equal ( projectSetupCount , 2 , 'project handler should have been setup twice' ) ;
64186419 } ) ;
64196420
6420- test ( 'synchronous transition errors can be detected synchronously' , function ( assert ) {
6421+ skip ( 'synchronous transition errors can be detected synchronously' , function ( assert ) {
64216422 map ( assert , function ( match ) {
64226423 match ( '/' ) . to ( 'root' ) ;
64236424 } ) ;
0 commit comments