How do I pass environment variable in script command – Javascript
I have below cypress nodeJS script commands in package.json "scripts": { "cy:run": "npx cypress run --browser chrome", "cy:parallel" : "cypress-parallel -s cy:run -t 4 -d cypress/e2e/features/ -m false -a '"--env ENV=${ENVI}"'" } -a is the argument that is dynamic, That…