-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(core): allow parsing dot notation cli args #9812
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/nrwl/nx-dev/GqStXasvSrXgpvPYEDUfpMGse8rF [Deployment for 5e216bd canceled] |
1bd9c12
to
a88c434
Compare
parse dot notation cli args for env args passed to cypress executor to override cypress.env.json values. i.e. nx e2e project --env.API_URL=localhost:1234 will now correctly give cypress e2e args to override the cypress.env.json values ISSUES CLOSED: #9764
a88c434
to
5e216bd
Compare
parse dot notation cli args for env args passed to cypress executor to override cypress.env.json values. i.e. nx e2e project --env.API_URL=localhost:1234 will now correctly give cypress e2e args to override the cypress.env.json values ISSUES CLOSED: #9764
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
parse dot notation cli args for env args passed to cypress executor to override cypress.env.json
values.
i.e.
nx e2e project --env.API_URL=localhost:1234
will now correctly give cypress e2e args to
override the cypress.env.json values
Current Behavior
nx e2e project --env.API_URL=localhost:1234
does not parse the correct env args for cypressExpected Behavior
nx e2e project --env.API_URL=localhost:1234
correctly is parsed for cypressRelated Issue(s)
Fixes #9764