Skip to content

Commit 976257e

Browse files
committed
Merge remote-tracking branch 'origin' into ryanm/fix/issue-with-optional-chainer
2 parents 92485cc + 207b027 commit 976257e

17 files changed

+214
-116
lines changed

.circleci/config.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
lint:
1010
description: Checks the code formatting
1111
docker:
12-
- image: cimg/node:22.1.0
12+
- image: cimg/node:22.8.0
1313
environment:
1414
# we don't need Cypress to check code style
1515
CYPRESS_INSTALL_BINARY: '0'
@@ -71,7 +71,7 @@ jobs:
7171
publish:
7272
description: Publishes the new version of the plugin to NPM
7373
docker:
74-
- image: cimg/node:22.1.0
74+
- image: cimg/node:22.8.0
7575
environment:
7676
# we don't need Cypress to do the release
7777
CYPRESS_INSTALL_BINARY: '0'
@@ -152,6 +152,7 @@ workflows:
152152
- exclude-files
153153
- frontend
154154
- fullstack
155+
- multiple-backends
155156
- one-spec
156157
- same-folder
157158
- support-files
@@ -179,6 +180,7 @@ workflows:
179180
- test-exclude-files
180181
- test-frontend
181182
- test-fullstack
183+
- test-multiple-backends
182184
- test-one-spec
183185
- test-same-folder
184186
- test-support-files

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,18 @@ if (global.__coverage__) {
214214
}
215215
```
216216

217+
Or if you have multiple servers from which you are wanting to gather code coverage, you can pass an array to `url` as well:
218+
219+
```json
220+
{
221+
"env": {
222+
"codeCoverage": {
223+
"url": ["http://localhost:3000/__coverage__", "http://localhost:3001/__coverage__"]
224+
}
225+
}
226+
}
227+
```
228+
217229
That should be enough - the code coverage from the server will be requested at the end of the test run and merged with the client-side code coverage, producing a combined report.
218230

219231
### expectBackendCoverageOnly

package-lock.json

+35-54
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"rimraf": "6.0.1",
7979
"semantic-release": "17.4.7",
8080
"serve": "14.2.1",
81-
"start-server-and-test": "2.0.5",
81+
"start-server-and-test": "2.0.7",
8282
"webpack": "^5.68.0",
8383
"webpack-cli": "^5.1.4"
8484
}

support-utils.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,9 @@ const filterSupportFilesFromCoverage = (
137137
function fixSourcePaths(coverage) {
138138
Object.values(coverage).forEach((file) => {
139139
const { path: absolutePath, inputSourceMap } = file
140+
if (!inputSourceMap) return
140141
const fileName = /([^\/\\]+)$/.exec(absolutePath)[1]
141-
if (!inputSourceMap || !fileName) return
142+
if (!fileName) return
142143

143144
if (inputSourceMap.sourceRoot) inputSourceMap.sourceRoot = ''
144145
inputSourceMap.sources = inputSourceMap.sources.map((source) =>

support.js

+36-26
Original file line numberDiff line numberDiff line change
@@ -155,39 +155,49 @@ const registerHooks = () => {
155155
// we can only request server-side code coverage
156156
// if we are running end-to-end tests,
157157
// otherwise where do we send the request?
158-
const url = Cypress._.get(
158+
const captureUrls = Cypress._.get(
159159
Cypress.env('codeCoverage'),
160160
'url',
161161
'/__coverage__'
162162
)
163-
cy.request({
164-
url,
165-
log: false,
166-
failOnStatusCode: false
167-
})
168-
.then((r) => {
169-
return Cypress._.get(r, 'body.coverage', null)
163+
function captureCoverage(url, suffix = '') {
164+
cy.request({
165+
url,
166+
log: false,
167+
failOnStatusCode: false
170168
})
171-
.then((coverage) => {
172-
if (!coverage) {
173-
// we did not get code coverage - this is the
174-
// original failed request
175-
const expectBackendCoverageOnly = Cypress._.get(
176-
Cypress.env('codeCoverage'),
177-
'expectBackendCoverageOnly',
178-
false
179-
)
180-
if (expectBackendCoverageOnly) {
181-
throw new Error(
182-
`Expected to collect backend code coverage from ${url}`
169+
.then((r) => {
170+
return Cypress._.get(r, 'body.coverage', null)
171+
})
172+
.then((coverage) => {
173+
if (!coverage) {
174+
// we did not get code coverage - this is the
175+
// original failed request
176+
const expectBackendCoverageOnly = Cypress._.get(
177+
Cypress.env('codeCoverage'),
178+
'expectBackendCoverageOnly',
179+
false
183180
)
184-
} else {
185-
// we did not really expect to collect the backend code coverage
186-
return
181+
if (expectBackendCoverageOnly) {
182+
throw new Error(
183+
`Expected to collect backend code coverage from ${url}`
184+
)
185+
} else {
186+
// we did not really expect to collect the backend code coverage
187+
return
188+
}
187189
}
188-
}
189-
sendCoverage(coverage, 'backend')
190-
})
190+
sendCoverage(coverage, `backend${suffix}`)
191+
})
192+
}
193+
194+
if (Array.isArray(captureUrls)) {
195+
for (const [index, url] of captureUrls.entries()) {
196+
captureCoverage(url, `_${index}`)
197+
}
198+
} else {
199+
captureCoverage(captureUrls)
200+
}
191201
}
192202
})
193203

0 commit comments

Comments
 (0)