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 @@ -489,6 +489,14 @@ function sync_args_from_cmd(args) {
489
489
lt_config [ "run_settings" ] [ "exclude_specs" ] == [ ] ;
490
490
}
491
491
492
+ if ( "fullHar" in args ) {
493
+ if ( args [ "fullHar" ] == "true" ) {
494
+ lt_config . run_settings . fullHar = true ;
495
+ } else {
496
+ lt_config . run_settings . fullHar = false ;
497
+ }
498
+ }
499
+
492
500
if ( "npm-f" in args ) {
493
501
if ( args [ "npm-f" ] == "true" ) {
494
502
lt_config . run_settings . npmf = true ;
Original file line number Diff line number Diff line change @@ -122,6 +122,11 @@ const argv = require("yargs")
122
122
describe : "Capture Network logs" ,
123
123
type : "string" ,
124
124
} )
125
+ . option ( "fullHar" , {
126
+ alias : "fullHar" ,
127
+ describe : "Capture Full Har Network logs" ,
128
+ type : "bool" ,
129
+ } )
125
130
. option ( "eof" , {
126
131
alias : "exit-on-failure" ,
127
132
describe : "Exit With Code 1 on failure" ,
You can’t perform that action at this time.
0 commit comments