@@ -468,7 +468,6 @@ exports.getHooksForTest = (test) => {
468468 [ '_beforeAll' , '_afterAll' , '_beforeEach' , '_afterEach' ] . forEach ( hookType => {
469469 let hooks = test . parent [ hookType ] || [ ]
470470 hooks . forEach ( testHook => {
471- this . debugOnConsole ( `[getHooksForTest] Hook ${ util . format ( testHook ) } with title ${ testHook . title } and analyticsId ${ testHook . hookAnalyticsId } ` ) ;
472471 if ( testHook . hookAnalyticsId ) hooksArr . push ( testHook . hookAnalyticsId ) ;
473472 } )
474473 } ) ;
@@ -480,7 +479,6 @@ exports.mapTestHooks = (test) => {
480479 [ '_beforeAll' , '_afterAll' , '_beforeEach' , '_afterEach' ] . forEach ( hookType => {
481480 let hooks = test . parent [ hookType ] || [ ]
482481 hooks . forEach ( testHook => {
483- this . debugOnConsole ( `[mapTestHooks] Hook ${ util . format ( testHook ) } with title ${ testHook . title } and analyticsId ${ testHook . hookAnalyticsId } ` ) ;
484482 if ( ! testHook . hookAnalyticsId ) {
485483 testHook . hookAnalyticsId = uuidv4 ( ) ;
486484 } else if ( testHook . markedStatus && hookType == '_afterEach' ) {
@@ -525,10 +523,6 @@ exports.batchAndPostEvents = async (eventUrl, kind, data) => {
525523}
526524
527525exports . uploadEventData = async ( eventData , run = 0 ) => {
528-
529-
530- this . debugOnConsole ( 'event data is ' + util . format ( eventData ) )
531-
532526 const requestQueueHandler = require ( './requestQueueHandler' ) ;
533527 exports . debugOnConsole ( `[uploadEventData] ${ eventData . event_type } ` ) ;
534528 const log_tag = {
@@ -930,7 +924,7 @@ exports.runCypressTestsLocally = (bsConfig, args, rawArgs) => {
930924 logger . info ( `Running npx cypress run ${ getReRunSpecs ( rawArgs . slice ( 1 ) ) . join ( ' ' ) } ${ getLocalSessionReporter ( ) . join ( ' ' ) } ` ) ;
931925 const cypressProcess = spawn (
932926 'npx' ,
933- [ 'cypress' , 'run' , '--headed' , ...getReRunSpecs ( rawArgs . slice ( 1 ) ) , ...getLocalSessionReporter ( ) ] ,
927+ [ 'cypress' , 'run' , ...getReRunSpecs ( rawArgs . slice ( 1 ) ) , ...getLocalSessionReporter ( ) ] ,
934928 { stdio : 'inherit' , cwd : process . cwd ( ) , env : process . env , shell : true }
935929 ) ;
936930 cypressProcess . on ( 'close' , async ( code ) => {
0 commit comments