@@ -30,7 +30,7 @@ import {
3030describe ( 'lib/utils/config_validator' , function ( ) {
3131 describe ( 'APIs' , function ( ) {
3232 describe ( 'validate' , function ( ) {
33- it ( 'should complain if the provided error handler is invalid' , function ( ) {
33+ it . skip ( 'should complain if the provided error handler is invalid' , function ( ) {
3434 const ex = assert . throws ( function ( ) {
3535 configValidator . validate ( {
3636 errorHandler : { } ,
@@ -39,7 +39,7 @@ describe('lib/utils/config_validator', function() {
3939 assert . equal ( ex . baseMessage , INVALID_ERROR_HANDLER ) ;
4040 } ) ;
4141
42- it ( 'should complain if the provided event dispatcher is invalid' , function ( ) {
42+ it . skip ( 'should complain if the provided event dispatcher is invalid' , function ( ) {
4343 const ex = assert . throws ( function ( ) {
4444 configValidator . validate ( {
4545 eventDispatcher : { } ,
@@ -48,7 +48,7 @@ describe('lib/utils/config_validator', function() {
4848 assert . equal ( ex . baseMessage , INVALID_EVENT_DISPATCHER ) ;
4949 } ) ;
5050
51- it ( 'should complain if the provided logger is invalid' , function ( ) {
51+ it . skip ( 'should complain if the provided logger is invalid' , function ( ) {
5252 const ex = assert . throws ( function ( ) {
5353 configValidator . validate ( {
5454 logger : { } ,
0 commit comments