File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -389,6 +389,10 @@ function sync_args_from_cmd(args) {
389389 lt_config [ "run_settings" ] [ "useNode18" ] = false ;
390390 }
391391
392+ if ( "useNodeVersion" in args ) {
393+ lt_config . run_settings . useNodeVersion = args [ "useNodeVersion" ] ;
394+ }
395+
392396 if ( "accessibility" in args ) {
393397 if ( args [ "accessibility" ] == "true" ) {
394398 lt_config . run_settings . accessibility = true ;
Original file line number Diff line number Diff line change @@ -246,6 +246,11 @@ const argv = require("yargs")
246246 describe : "Use node version 18 for cypress" ,
247247 type : "bool" ,
248248 } )
249+ . option ( "nodeV" , {
250+ alias : "useNodeVersion" ,
251+ describe : "Specify Node.js version for Cypress runtime" ,
252+ type : "string" ,
253+ } )
249254 . option ( "net_sse" , {
250255 alias : "network_sse" ,
251256 describe : "Bypass sse events calls for Network logs" ,
You can’t perform that action at this time.
0 commit comments