File tree Expand file tree Collapse file tree 3 files changed +0
-17
lines changed
testObservability/reporter Expand file tree Collapse file tree 3 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -337,13 +337,6 @@ afterEach(() => {
337
337
filePath = ( attributes . prevAttempts [ 0 ] . invocationDetails && attributes . prevAttempts [ 0 ] . invocationDetails . relativeFile ) || '' ;
338
338
}
339
339
340
- browserStackLog ( `Printing attributes ${ attributes . title } ` ) ;
341
- browserStackLog ( `Saving accessibility test results` ) ;
342
- browserStackLog ( `Cypress env browserstack testhub uuid: ${ Cypress . env ( "BROWSERSTACK_TESTHUB_UUID" ) } ` ) ;
343
- browserStackLog ( `Cypress env browserstack testhub jwt: ${ Cypress . env ( "BROWSERSTACK_TESTHUB_JWT" ) } ` ) ;
344
- browserStackLog ( `Cypress env http port: ${ Cypress . env ( "BROWSERSTACK_TESTHUB_API_PORT" ) } ` ) ;
345
- browserStackLog ( `reporter api: ${ Cypress . env ( "REPORTER_API_PORT_NO" ) } ` ) ;
346
-
347
340
let testRunUuid = null ;
348
341
cy . task ( 'get_test_run_uuid' , { testIdentifier : attributes . title } )
349
342
. then ( ( response ) => {
Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ const browserstackAccessibility = (on, config) => {
17
17
} ,
18
18
get_test_run_uuid ( { testIdentifier, retries = 15 , interval = 300 } = { } ) {
19
19
return new Promise ( ( resolve ) => {
20
- console . log ( `printing env variables take 7` ) ;
21
- console . log ( `Cypress env browserstack testhub uuid from plugin: ${ config . env . BROWSERSTACK_TESTHUB_UUID } ` ) ;
22
- console . log ( `Cypress env http port: ${ config . env . REPORTER_API_PORT_NO } ` ) ;
23
- console . log ( `reporter api from process: ${ process . env . REPORTER_API_PORT_NO } ` ) ;
24
- console . log ( `Fetching testRunUuid for testIdentifier: ${ testIdentifier } ` ) ;
25
20
if ( ! testIdentifier ) return resolve ( null ) ;
26
21
const port = process . env . REPORTER_API_PORT_NO ;
27
22
let attempt = 0 ;
Original file line number Diff line number Diff line change @@ -393,11 +393,6 @@ class MyReporter {
393
393
} ;
394
394
395
395
debugOnConsole ( `${ eventType } for uuid: ${ testData . uuid } ` ) ;
396
- console . log ( "inside sendTestRunEvent" )
397
- console . log ( `testrunUuid: ${ testData . uuid } ` ) ;
398
- console . log ( `testIdentifier: ${ testData . identifier } ` ) ;
399
- console . log ( `testTitle: ${ test . title } ` ) ;
400
- console . log ( `eventType: ${ eventType } ` ) ;
401
396
402
397
this . mapTestId ( testData , eventType ) ;
403
398
You can’t perform that action at this time.
0 commit comments