@@ -73,7 +73,7 @@ You can also instrument your server-side code and produce combined coverage repo
73
73
``` js
74
74
const express = require (' express' )
75
75
const app = express ()
76
- require (' @cypress/code-coverage/middleware' )(app)
76
+ require (' @cypress/code-coverage/middleware/express ' )(app)
77
77
```
78
78
79
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
@@ -82,24 +82,25 @@ require('@cypress/code-coverage/middleware')(app)
82
82
// https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md
83
83
/* istanbul ignore next */
84
84
if (global .__coverage__ ) {
85
- require (' @cypress/code-coverage/middleware' )(app)
85
+ require (' @cypress/code-coverage/middleware/express ' )(app)
86
86
}
87
87
```
88
88
89
89
If you use Hapi server, define the endpoint yourself and return the object
90
90
91
91
``` js
92
- // https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md
93
- /* istanbul ignore next */
94
92
if (global .__coverage__ ) {
95
- // https://hapijs.com/tutorials/routing?lang=en_US
96
- server .route ({
97
- method: ' GET' ,
98
- path: ' /__coverage__' ,
99
- handler () {
100
- return { coverage: global .__coverage__ }
101
- }
102
- })
93
+ require (' @cypress/code-coverage/middleware/hapi' )(server)
94
+ }
95
+ ```
96
+
97
+ For any other server, define the endpoint yourself and return the coverage object:
98
+
99
+ ``` js
100
+ if (global .__coverage__ ) {
101
+ // add method "GET /__coverage__" and response with JSON
102
+ onRequest = (response ) =>
103
+ response .sendJSON ({coverage: global .__coverage__ })
103
104
}
104
105
```
105
106
0 commit comments