@@ -178,7 +178,7 @@ async function runAppTestsOnBrowserStack(
178
178
appPath ?: string ;
179
179
testSuitePath ?: string ;
180
180
browserstackAppUrl ?: string ;
181
- browserstack_test_suite_url ?: string ;
181
+ browserstackTestSuiteUrl ?: string ;
182
182
devices : string [ ] ;
183
183
project : string ;
184
184
detectedAutomationFramework : string ;
@@ -191,9 +191,9 @@ async function runAppTestsOnBrowserStack(
191
191
"appPath is required when browserstackAppUrl is not provided" ,
192
192
) ;
193
193
}
194
- if ( ! args . browserstack_test_suite_url && ! args . testSuitePath ) {
194
+ if ( ! args . browserstackTestSuiteUrl && ! args . testSuitePath ) {
195
195
throw new Error (
196
- "testSuitePath is required when browserstack_test_suite_url is not provided" ,
196
+ "testSuitePath is required when browserstackTestSuiteUrl is not provided" ,
197
197
) ;
198
198
}
199
199
@@ -210,8 +210,8 @@ async function runAppTestsOnBrowserStack(
210
210
}
211
211
212
212
let test_suite_url : string ;
213
- if ( args . browserstack_test_suite_url ) {
214
- test_suite_url = args . browserstack_test_suite_url ;
213
+ if ( args . browserstackTestSuiteUrl ) {
214
+ test_suite_url = args . browserstackTestSuiteUrl ;
215
215
logger . info (
216
216
`Using provided BrowserStack test suite URL: ${ test_suite_url } ` ,
217
217
) ;
@@ -255,8 +255,8 @@ async function runAppTestsOnBrowserStack(
255
255
}
256
256
257
257
let test_suite_url : string ;
258
- if ( args . browserstack_test_suite_url ) {
259
- test_suite_url = args . browserstack_test_suite_url ;
258
+ if ( args . browserstackTestSuiteUrl ) {
259
+ test_suite_url = args . browserstackTestSuiteUrl ;
260
260
logger . info (
261
261
`Using provided BrowserStack test suite URL: ${ test_suite_url } ` ,
262
262
) ;
0 commit comments