You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now the code coverage from spec files will be combined with end-to-end coverage.
65
65
66
+
## Instrument backend code
67
+
68
+
You can also instrument your server-side code and produce combined coverage report that covers both the backend and frontend code.
69
+
70
+
1. Run the server code with instrumentation. The simplest way is to use [nyc](https://github.com/istanbuljs/nyc). If normally you run `node src/server` then to run instrumented version you can do `nyc --silent node src/server`.
71
+
2. Add an endpoint that returns collected coverage. If you are using Express, you can simply do
72
+
73
+
```js
74
+
constexpress=require('express')
75
+
constapp=express()
76
+
require('@cypress/code-coverage/middleware')(app)
77
+
```
78
+
79
+
**Tip:** you can register the endpoint only if there is global code coverage object, and you can exclude the middleware code from the coverage numbers
3. Save the API coverage endpoint in `cypress.json` file to let the plugin know where to call to receive the code coverage data from the server. Place it in `env.codeCoverage` object:
107
+
108
+
```json
109
+
{
110
+
"env": {
111
+
"codeCoverage": {
112
+
"url": "http://localhost:3000/__coverage__"
113
+
}
114
+
}
115
+
}
116
+
```
117
+
118
+
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
0 commit comments