Skip to content

Commit 40a602d

Browse files
authored
feat: use --env coverage=false to disable code coverage (#68)
You can skip the client-side code coverage hooks by setting the environment variable `coverage` to `false`. ```shell cypress run --env coverage=false cypress open --env coverage=false CYPRESS_coverage=false cypress run ``` See different ways of setting env variables https://on.cypress.io/environment-variables
1 parent 448b603 commit 40a602d

File tree

3 files changed

+94
-67
lines changed

3 files changed

+94
-67
lines changed

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,23 @@ For example, if you want to only include files in the `app` folder, but exclude
219219
}
220220
```
221221

222+
## Disable plugin
223+
224+
You can skip the client-side code coverage hooks by setting the environment variable `coverage` to `false`.
225+
226+
```shell
227+
cypress run --env coverage=false
228+
```
229+
230+
See [Cypress environment variables](https://on.cypress.io/environment-variables) and [support.js](support.js). You can try running without code coverage in this project yourself
231+
232+
```shell
233+
# run with code coverage
234+
npm run dev
235+
# disable code coverage
236+
npm run dev:no:coverage
237+
```
238+
222239
## Links
223240

224241
- Read the [Cypress code coverage guide](http://on.cypress.io/code-coverage)

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"dev": "start-test 1234 cy:open",
1111
"semantic-release": "semantic-release",
1212
"test:ci": "start-test 1234",
13-
"report:coverage": "nyc report --reporter=html"
13+
"report:coverage": "nyc report --reporter=html",
14+
"dev:no:coverage": "start-test 1234 'cypress open --env coverage=false'"
1415
},
1516
"peerDependencies": {
1617
"cypress": "*",

support.js

+75-66
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,84 @@
11
/// <reference types="cypress" />
2-
before(() => {
3-
// we need to reset the coverage when running
4-
// in the interactive mode, otherwise the counters will
5-
// keep increasing every time we rerun the tests
6-
cy.task('resetCoverage', { isInteractive: Cypress.config('isInteractive') })
7-
})
82

9-
afterEach(() => {
10-
// save coverage after each test
11-
// because the entire "window" object is about
12-
// to be recycled by Cypress before next test
13-
cy.window().then(win => {
14-
// if application code has been instrumented, the app iframe "window" has an object
15-
const applicationSourceCoverage = win.__coverage__
16-
17-
if (applicationSourceCoverage) {
18-
cy.task('combineCoverage', applicationSourceCoverage)
19-
}
3+
// to disable code coverage commands and save time
4+
// pass environment variable coverage=false
5+
// cypress run --env coverage=false
6+
// see https://on.cypress.io/environment-variables
7+
if (Cypress.env('coverage') === false) {
8+
console.log('Skipping code coverage hooks')
9+
} else {
10+
before(() => {
11+
// we need to reset the coverage when running
12+
// in the interactive mode, otherwise the counters will
13+
// keep increasing every time we rerun the tests
14+
cy.task('resetCoverage', { isInteractive: Cypress.config('isInteractive') })
2015
})
21-
})
2216

23-
after(() => {
24-
// there might be server-side code coverage information
25-
// we should grab it once after all tests finish
26-
const baseUrl = Cypress.config('baseUrl') || cy.state('window').origin
27-
const runningEndToEndTests = baseUrl !== Cypress.config('proxyUrl')
28-
if (runningEndToEndTests) {
29-
// we can only request server-side code coverage
30-
// if we are running end-to-end tests,
31-
// otherwise where do we send the request?
32-
const url = Cypress._.get(
33-
Cypress.env('codeCoverage'),
34-
'url',
35-
'/__coverage__'
36-
)
37-
cy.request({
38-
url,
39-
log: false,
40-
failOnStatusCode: false
17+
afterEach(() => {
18+
// save coverage after each test
19+
// because the entire "window" object is about
20+
// to be recycled by Cypress before next test
21+
cy.window().then(win => {
22+
// if application code has been instrumented, the app iframe "window" has an object
23+
const applicationSourceCoverage = win.__coverage__
24+
25+
if (applicationSourceCoverage) {
26+
cy.task('combineCoverage', applicationSourceCoverage)
27+
}
4128
})
42-
.then(r => Cypress._.get(r, 'body.coverage', null), { log: false })
43-
.then(coverage => {
44-
if (!coverage) {
45-
// we did not get code coverage - this is the
46-
// original failed request
47-
return
48-
}
49-
cy.task('combineCoverage', coverage)
29+
})
30+
31+
after(() => {
32+
// there might be server-side code coverage information
33+
// we should grab it once after all tests finish
34+
const baseUrl = Cypress.config('baseUrl') || cy.state('window').origin
35+
const runningEndToEndTests = baseUrl !== Cypress.config('proxyUrl')
36+
if (runningEndToEndTests) {
37+
// we can only request server-side code coverage
38+
// if we are running end-to-end tests,
39+
// otherwise where do we send the request?
40+
const url = Cypress._.get(
41+
Cypress.env('codeCoverage'),
42+
'url',
43+
'/__coverage__'
44+
)
45+
cy.request({
46+
url,
47+
log: false,
48+
failOnStatusCode: false
5049
})
51-
}
50+
.then(r => Cypress._.get(r, 'body.coverage', null), { log: false })
51+
.then(coverage => {
52+
if (!coverage) {
53+
// we did not get code coverage - this is the
54+
// original failed request
55+
return
56+
}
57+
cy.task('combineCoverage', coverage)
58+
})
59+
}
5260

53-
// collect and merge frontend coverage
54-
const specFolder = Cypress.config('integrationFolder')
55-
const supportFolder = Cypress.config('supportFolder')
61+
// collect and merge frontend coverage
62+
const specFolder = Cypress.config('integrationFolder')
63+
const supportFolder = Cypress.config('supportFolder')
5664

57-
// if spec bundle has been instrumented (using Cypress preprocessor)
58-
// then we will have unit test coverage
59-
// NOTE: spec iframe is NOT reset between the tests, so we can grab
60-
// the coverage information only once after all tests have finished
61-
const unitTestCoverage = window.__coverage__
62-
if (unitTestCoverage) {
63-
// remove coverage for the spec files themselves,
64-
// only keep "external" application source file coverage
65-
const coverage = Cypress._.omitBy(
66-
window.__coverage__,
67-
(fileCoverage, filename) =>
68-
filename.startsWith(specFolder) || filename.startsWith(supportFolder)
69-
)
70-
cy.task('combineCoverage', coverage)
71-
}
65+
// if spec bundle has been instrumented (using Cypress preprocessor)
66+
// then we will have unit test coverage
67+
// NOTE: spec iframe is NOT reset between the tests, so we can grab
68+
// the coverage information only once after all tests have finished
69+
const unitTestCoverage = window.__coverage__
70+
if (unitTestCoverage) {
71+
// remove coverage for the spec files themselves,
72+
// only keep "external" application source file coverage
73+
const coverage = Cypress._.omitBy(
74+
window.__coverage__,
75+
(fileCoverage, filename) =>
76+
filename.startsWith(specFolder) || filename.startsWith(supportFolder)
77+
)
78+
cy.task('combineCoverage', coverage)
79+
}
7280

73-
// when all tests finish, lets generate the coverage report
74-
cy.task('coverageReport')
75-
})
81+
// when all tests finish, lets generate the coverage report
82+
cy.task('coverageReport')
83+
})
84+
}

0 commit comments

Comments
 (0)