Skip to content

replace <record_key> with example key because '<' was not escaping properly. close #128 #140

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

Merged
merged 1 commit into from
Oct 16, 2017
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
2 changes: 1 addition & 1 deletion source/dashboard/overview/projects-dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ In order to record your test runs, you'll also need to provide a {% urlHash "Rec
***Provide record key in {% url '`cypress run`' command-line#cypress-run %}:***

```shell
cypress run --record --key <record_key>
cypress run --record --key abc-key-123
```

***Or set record key as environment variable***
Expand Down
2 changes: 1 addition & 1 deletion source/guides/guides/continuous-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ If you are {% url 'recording your runs' continuous-integration#Recording-Tests-i
Instead of hard coding it into your run command like this:

```shell
cypress run --record --key <record_key>
cypress run --record --key abc-key-123
```

You can set the record key as the environment variable, `CYPRESS_RECORD_KEY`, and we'll automatically use that value. You can now omit the `--key` flag when recording.
Expand Down
4 changes: 2 additions & 2 deletions source/guides/references/error-messages.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,13 +369,13 @@ As of version {% url `0.19.0` changelog#0-19-0 %} and CLI versions `0.13.0`, the
Previously to record runs you had the environment variable: `CYPRESS_CI_KEY` or you wrote:

```shell
cypress ci <key>
cypress ci abc-key-123
```

You need to rewrite this as:

```shell
cypress run --record --key <record_key>
cypress run --record --key abc-key-123
```

If you were using the environment variable `CYPRESS_CI_KEY`, rename it to`CYPRESS_RECORD_KEY`.
Expand Down