File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ component extends="tests.resources.BaseIntegrationTest" {
3939 } );
4040 } );
4141
42- xstory ( " I want to execute a global invalid event handler" , function (){
42+ story ( " I want to execute a global invalid event handler" , function (){
4343 given ( " an invalid event" , function (){
4444 then ( " it should fire the global invalid event handler" , function (){
4545 var e = this .get ( " does.not.exist" );
@@ -56,8 +56,8 @@ component extends="tests.resources.BaseIntegrationTest" {
5656 renderResults = true ,
5757 withExceptionHandling = true
5858 );
59- expecT ( e .getPrivateValue ( " exception" ).getType () ).toBe ( " CustomException" );
60- expecT ( e .getPrivateValue ( " exception" ).getMessage () ).toInclude ( " Whoops" );
59+ expect ( e .getPrivateValue ( " exception" ).getType () ).toBe ( " CustomException" );
60+ expect ( e .getPrivateValue ( " exception" ).getMessage () ).toInclude ( " Whoops" );
6161 expect ( getNativeStatusCode () ).toBe ( 500 );
6262 } );
6363 } );
You can’t perform that action at this time.
0 commit comments