File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -326,6 +326,9 @@ module.exports = function run(args, rawArgs) {
326
326
}
327
327
let message = `${ data . message } ! ${ Constants . userMessages . BUILD_CREATED } with build id: ${ data . build_id } ` ;
328
328
let dashboardLink = `${ Constants . userMessages . VISIT_DASHBOARD } ${ data . dashboard_url } ` ;
329
+ if ( turboScaleSession ) {
330
+ dashboardLink = `${ Constants . userMessages . VISIT_ATS_DASHBOARD } ${ data . dashboard_url } ` ;
331
+ }
329
332
buildReportData = { 'build_id' : data . build_id , 'parallels' : userSpecifiedParallels , ...buildReportData }
330
333
utils . exportResults ( data . build_id , `${ config . dashboardUrl } ${ data . build_id } ` ) ;
331
334
if ( ( utils . isUndefined ( bsConfig . run_settings . parallels ) && utils . isUndefined ( args . parallels ) ) || ( ! utils . isUndefined ( bsConfig . run_settings . parallels ) && bsConfig . run_settings . parallels == Constants . cliMessages . RUN . DEFAULT_PARALLEL_MESSAGE ) ) {
@@ -388,6 +391,8 @@ module.exports = function run(args, rawArgs) {
388
391
logger . info ( Constants . userMessages . BUILD_FAILED_ERROR )
389
392
process . exitCode = Constants . BUILD_FAILED_EXIT_CODE ;
390
393
} ) ;
394
+ } else {
395
+ utils . handleSyncExit ( exitCode , data . dashboard_url ) ;
391
396
}
392
397
} ) ;
393
398
} else if ( utils . nonEmptyArray ( bsConfig . run_settings . downloads && ! turboScaleSession ) ) {
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ const userMessages = {
57
57
FAILED_MD5_CHECK :
58
58
"Something went wrong - you can retry running browserstack-cypress with ‘--force-upload’ parameter, or contact BrowserStack Support." ,
59
59
VISIT_DASHBOARD : "Visit the Automate dashboard for real-time test reporting:" ,
60
+ VISIT_ATS_DASHBOARD : "Visit the Automate TurboScale dashboard for real-time test reporting:" ,
60
61
CONFLICTING_INIT_ARGUMENTS :
61
62
"Conflicting arguments given. You can use --path only with a file name, and not with a file path." ,
62
63
NO_PARALLELS :
You can’t perform that action at this time.
0 commit comments