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
You can also instrument your server-side code and produce combined coverage report that covers both the backend and frontend code.
137
+
Example in [examples/backend](examples/backend) folder.
138
+
139
+
You can also instrument your server-side code and produce combined coverage report that covers both the backend and frontend code
138
140
139
141
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`.
140
142
2. Add an endpoint that returns collected coverage. If you are using Express, you can simply do
@@ -184,7 +186,7 @@ if (global.__coverage__) {
184
186
}
185
187
```
186
188
187
-
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
189
+
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