@@ -17,14 +17,13 @@ const browserstackAccessibility = (on, config) => {
1717 } ,
1818 get_test_run_uuid ( { testIdentifier, retries = 15 , interval = 300 } = { } ) {
1919 return new Promise ( ( resolve ) => {
20- console . log ( `printing env variables take 6 ` ) ;
20+ console . log ( `printing env variables take 7 ` ) ;
2121 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 } ` ) ;
23- console . log ( `test env: ${ config . env . TEST_ENV } ` ) ;
24- console . log ( `reporter api from process: ${ process . env . REPORTER_API } ` ) ;
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 } ` ) ;
2524 console . log ( `Fetching testRunUuid for testIdentifier: ${ testIdentifier } ` ) ;
2625 if ( ! testIdentifier ) return resolve ( null ) ;
27- const port = process . env . REPORTER_API ;
26+ const port = process . env . REPORTER_API_PORT_NO ;
2827 let attempt = 0 ;
2928 const fetchUuid = ( ) => {
3029 const options = {
@@ -105,7 +104,7 @@ const browserstackAccessibility = (on, config) => {
105104 config . env . BROWSERSTACK_TESTHUB_UUID = process . env . BROWSERSTACK_TESTHUB_UUID
106105 config . env . BROWSERSTACK_TESTHUB_JWT = process . env . BROWSERSTACK_TESTHUB_JWT
107106 config . env . BROWSERSTACK_TESTHUB_API_PORT = process . env . BROWSERSTACK_TESTHUB_API_PORT
108- config . env . REPORTER_API = process . env . REPORTER_API
107+ config . env . REPORTER_API_PORT_NO = process . env . REPORTER_API_PORT_NO
109108
110109 config . env . IS_ACCESSIBILITY_EXTENSION_LOADED = browser_validation . toString ( )
111110
0 commit comments