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 @@ -478,6 +478,14 @@ function sync_args_from_cmd(args) {
478478 lt_config [ "run_settings" ] [ "privateCloud" ] = false ;
479479 }
480480
481+ if ( "enableCFT" in args ) {
482+ if ( args [ "enableCFT" ] == "true" ) {
483+ lt_config . run_settings . enableCFT = true ;
484+ } else {
485+ lt_config . run_settings . enableCFT = false ;
486+ }
487+ }
488+
481489 //Check for stop on failure location
482490 if ( "stop_on_failure" in args ) {
483491 lt_config [ "run_settings" ] [ "stop_on_failure" ] = true ;
Original file line number Diff line number Diff line change @@ -270,6 +270,11 @@ const argv = require("yargs")
270270 alias : "privateCloud" ,
271271 describe : "Set custom private Cloud" ,
272272 type : "bool" ,
273+ } )
274+ . option ( "enableCFT" , {
275+ alias : "enableCFT" ,
276+ describe : "Enable Chrome for Testing feature flag" ,
277+ type : "bool" ,
273278 } ) ;
274279 } ,
275280 function ( argv ) {
You can’t perform that action at this time.
0 commit comments