From eff53c905a9fed74915e6ccf0ca4f7b20eba469e Mon Sep 17 00:00:00 2001 From: Mark Noonan Date: Thu, 11 May 2023 09:08:53 -0400 Subject: [PATCH 1/2] update some text for clarity --- docs/guides/guides/command-line.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/guides/command-line.mdx b/docs/guides/guides/command-line.mdx index 23468548a4..583a2f57cd 100644 --- a/docs/guides/guides/command-line.mdx +++ b/docs/guides/guides/command-line.mdx @@ -532,14 +532,14 @@ will be guided through selecting a browser, project, and/or testing type. | Option | Description | | --------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -| `--browser`, `-b` | [Path to a custom browser to be added to the list of available browsers in Cypress](#cypress-open-browser-lt-browser-path-gt) | -| `--component` | [Run component tests](/guides/core-concepts/testing-types#What-is-Component-Testing) | +| `--browser`, `-b` | [Run Cypress in the browser with the given name. If a filesystem path is supplied, Cypress will attempt to use the browser at that path.](#cypress-open-browser-lt-browser-path-gt) | +| `--component` | [Open in component testing mode](/guides/core-concepts/testing-types#What-is-Component-Testing) | | `--config`, `-c` | [Specify configuration](#cypress-open-config-lt-config-gt) | | `--config-file`, `-C` | [Specify configuration file](#cypress-open-config-file-lt-configuration-file-gt) | | `--detached`, `-d` | Open Cypress in detached mode | -| `--e2e` | Run end to end tests (default) | +| `--e2e` | Open in end to end testing mode (default) | | `--env`, `-e` | [Specify environment variables](#cypress-open-env-lt-env-gt) | -| `--global` | [Run in global mode](#cypress-open-global) | +| `--global` | [Open in global mode](#cypress-open-global) | | `--help`, `-h` | Output usage information | | `--port`, `-p` | [Override default port](#cypress-open-port-lt-port-gt) | | `--project`, `-P` | [Path to a specific project](#cypress-open-project-lt-project-path-gt) | From abddf18e38cab64184fff9db153a30e58b11a956 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Thu, 16 Nov 2023 13:08:17 -0500 Subject: [PATCH 2/2] lint --- docs/guides/guides/command-line.mdx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/guides/guides/command-line.mdx b/docs/guides/guides/command-line.mdx index 583a2f57cd..9096bdd1ff 100644 --- a/docs/guides/guides/command-line.mdx +++ b/docs/guides/guides/command-line.mdx @@ -530,19 +530,19 @@ By passing `--browser` and `--e2e` or `--component` when launching a project, you can open Cypress and launch the browser at the same time. Otherwise, you will be guided through selecting a browser, project, and/or testing type. -| Option | Description | -| --------------------- | ----------------------------------------------------------------------------------------------------------------------------- | +| Option | Description | +| --------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `--browser`, `-b` | [Run Cypress in the browser with the given name. If a filesystem path is supplied, Cypress will attempt to use the browser at that path.](#cypress-open-browser-lt-browser-path-gt) | -| `--component` | [Open in component testing mode](/guides/core-concepts/testing-types#What-is-Component-Testing) | -| `--config`, `-c` | [Specify configuration](#cypress-open-config-lt-config-gt) | -| `--config-file`, `-C` | [Specify configuration file](#cypress-open-config-file-lt-configuration-file-gt) | -| `--detached`, `-d` | Open Cypress in detached mode | -| `--e2e` | Open in end to end testing mode (default) | -| `--env`, `-e` | [Specify environment variables](#cypress-open-env-lt-env-gt) | -| `--global` | [Open in global mode](#cypress-open-global) | -| `--help`, `-h` | Output usage information | -| `--port`, `-p` | [Override default port](#cypress-open-port-lt-port-gt) | -| `--project`, `-P` | [Path to a specific project](#cypress-open-project-lt-project-path-gt) | +| `--component` | [Open in component testing mode](/guides/core-concepts/testing-types#What-is-Component-Testing) | +| `--config`, `-c` | [Specify configuration](#cypress-open-config-lt-config-gt) | +| `--config-file`, `-C` | [Specify configuration file](#cypress-open-config-file-lt-configuration-file-gt) | +| `--detached`, `-d` | Open Cypress in detached mode | +| `--e2e` | Open in end to end testing mode (default) | +| `--env`, `-e` | [Specify environment variables](#cypress-open-env-lt-env-gt) | +| `--global` | [Open in global mode](#cypress-open-global) | +| `--help`, `-h` | Output usage information | +| `--port`, `-p` | [Override default port](#cypress-open-port-lt-port-gt) | +| `--project`, `-P` | [Path to a specific project](#cypress-open-project-lt-project-path-gt) | #### `cypress open --browser ` {#cypress-open-browser-lt-browser-path-gt}