Skip to content

Commit

Permalink
Merge pull request #140 from cypress-io/#128-record-key-hidden
Browse files Browse the repository at this point in the history
replace <record_key> with example key because '<' was not escaping properly. close #128
  • Loading branch information
Jennifer Shehane authored Oct 16, 2017
2 parents bfa34e9 + b73e871 commit e64e849
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit e64e849

Please sign in to comment.