File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -442,6 +442,14 @@ function sync_args_from_cmd(args) {
442
442
) ;
443
443
}
444
444
445
+ if ( "cmd_log" in args ) {
446
+ if ( args [ "cmd_log" ] == "true" ) {
447
+ lt_config . run_settings . commandLog = true ;
448
+ } else {
449
+ lt_config . run_settings . commandLog = false ;
450
+ }
451
+ }
452
+
445
453
//get specs from current directory if specs are not passed in config or cli
446
454
if (
447
455
( lt_config [ "run_settings" ] [ "specs" ] == undefined ||
Original file line number Diff line number Diff line change @@ -192,6 +192,11 @@ const argv = require("yargs")
192
192
alias : "max_duration" ,
193
193
describe : "stops test if it is running more than max_duration minutes." ,
194
194
type : "string" ,
195
+ } )
196
+ . option ( "cmd_log" , {
197
+ alias : "command_log" ,
198
+ describe : "show command logs on dashboard." ,
199
+ type : "string" ,
195
200
} ) ;
196
201
} ,
197
202
function ( argv ) {
You can’t perform that action at this time.
0 commit comments