@@ -17,14 +17,13 @@ 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 6 ` ) ;
20
+ console . log ( `printing env variables take 7 ` ) ;
21
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 } ` ) ;
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 } ` ) ;
25
24
console . log ( `Fetching testRunUuid for testIdentifier: ${ testIdentifier } ` ) ;
26
25
if ( ! testIdentifier ) return resolve ( null ) ;
27
- const port = process . env . REPORTER_API ;
26
+ const port = process . env . REPORTER_API_PORT_NO ;
28
27
let attempt = 0 ;
29
28
const fetchUuid = ( ) => {
30
29
const options = {
@@ -105,7 +104,7 @@ const browserstackAccessibility = (on, config) => {
105
104
config . env . BROWSERSTACK_TESTHUB_UUID = process . env . BROWSERSTACK_TESTHUB_UUID
106
105
config . env . BROWSERSTACK_TESTHUB_JWT = process . env . BROWSERSTACK_TESTHUB_JWT
107
106
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
109
108
110
109
config . env . IS_ACCESSIBILITY_EXTENSION_LOADED = browser_validation . toString ( )
111
110
0 commit comments