Skip to content

Commit 7c72b4c

Browse files
Merge branch 'master' into snyk-fix-9119112e51c2cb62aa4bd67be2067f7d
2 parents c8cd9d0 + 69f5015 commit 7c72b4c

File tree

4 files changed

+116
-14
lines changed

4 files changed

+116
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ You can skip the client-side code coverage hooks by setting the environment vari
373373
# tell Cypress to set environment variable "coverage" to false
374374
cypress run --env coverage=false
375375
# or pass the environment variable
376-
CYPRESS_coverage=false cypress run
376+
CYPRESS_COVERAGE=false cypress run
377377
```
378378

379379
or set it to `false` in the `cypress.json` file

package-lock.json

Lines changed: 113 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"execa": "4.1.0",
5454
"globby": "11.0.4",
5555
"istanbul-lib-coverage": "3.0.0",
56-
"js-yaml": "3.14.1",
56+
"js-yaml": "4.1.0",
5757
"nyc": "15.1.0"
5858
},
5959
"devDependencies": {

support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ const registerHooks = () => {
214214
// pass environment variable coverage=false
215215
// cypress run --env coverage=false
216216
// or
217-
// CYPRESS_coverage=false cypress run
217+
// CYPRESS_COVERAGE=false cypress run
218218
// see https://on.cypress.io/environment-variables
219219

220220
// to avoid "coverage" env variable being case-sensitive, convert to lowercase

0 commit comments

Comments
 (0)