Skip to content
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

misc: correct CLI help typo for cypress open --global #30532

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

_Released 11/5/2024 (PENDING)_

**Misc:**

- Fixed a typo in CLI `global` option help text. Addresses [#30531](https://github.com/cypress-io/cypress/issues/30531).

**Dependency Updates:**

- Updated `@cypress/request` from `3.0.4` to `3.0.6`. Addressed in [#30488](https://github.com/cypress-io/cypress/pull/30488).
Expand Down
2 changes: 1 addition & 1 deletion cli/__snapshots__/cli_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ exports['shows help for open --foo 1'] = `
multiple values with a comma. overrides any
value in cypress.config.{js,ts,mjs,cjs} or
cypress.env.json
--global force Cypress into global mode as if its
--global force Cypress into global mode as if it were
globally installed
-p, --port <port> runs Cypress on a specific port. overrides
any value in cypress.config.{js,ts,mjs,cjs}.
Expand Down
2 changes: 1 addition & 1 deletion cli/lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const descriptions = {
env: 'sets environment variables. separate multiple values with a comma. overrides any value in cypress.config.{js,ts,mjs,cjs} or cypress.env.json',
exit: 'keep the browser open after tests finish',
forceInstall: 'force install the Cypress binary',
global: 'force Cypress into global mode as if its globally installed',
global: 'force Cypress into global mode as if it were globally installed',
group: 'a named group for recorded runs in Cypress Cloud',
headed: 'displays the browser instead of running headlessly',
headless: 'hide the browser instead of running headed (default for cypress run)',
Expand Down