@@ -354,12 +354,10 @@ exports.getSupportFiles = (bsConfig, isA11y) => {
354354 let userSupportFile = null ;
355355 try {
356356 const completeCypressConfigFile = readCypressConfigFile ( bsConfig )
357- console . log ( `Complete Cypress config file: ${ JSON . stringify ( completeCypressConfigFile ) } ` ) ;
358357 let cypressConfigFile = { } ;
359358 if ( ! utils . isUndefined ( completeCypressConfigFile ) ) {
360359 cypressConfigFile = ! utils . isUndefined ( completeCypressConfigFile . default ) ? completeCypressConfigFile . default : completeCypressConfigFile
361360 }
362- console . log ( `Cypress config file: ${ JSON . stringify ( cypressConfigFile ) } ` ) ;
363361 userSupportFile = cypressConfigFile . e2e ?. supportFile !== null ? cypressConfigFile . e2e ?. supportFile : cypressConfigFile . component ?. supportFile !== null ? cypressConfigFile . component ?. supportFile : cypressConfigFile . supportFile ;
364362 if ( userSupportFile == false && extension ) {
365363 const supportFolderPath = path . join ( process . cwd ( ) , 'cypress' , 'support' ) ;
@@ -386,16 +384,13 @@ exports.getSupportFiles = (bsConfig, isA11y) => {
386384 supportFile = process . env [ envVar ] ;
387385 } else {
388386 /* Single file / glob pattern */
389- console . log ( `Using user defined support file: ${ userSupportFile } ` ) ;
390387 supportFile = userSupportFile ;
391388 }
392389 } else if ( Array . isArray ( userSupportFile ) ) {
393- console . log ( `Using user defined support files123: ${ userSupportFile } ` ) ;
394390 supportFile = userSupportFile [ 0 ] ;
395391 }
396392 } catch ( err ) { }
397393 if ( supportFile && supportFile [ 0 ] != '/' ) supportFile = '/' + supportFile ;
398- console . log ( `Final support file: ${ supportFile } ` ) ;
399394 return {
400395 supportFile,
401396 cleanupParams : Object . keys ( cleanupParams ) . length ? cleanupParams : null
0 commit comments