Skip to content

Commit 95788c4

Browse files
committed
feat: add hapi middleware
1 parent 6cc65fc commit 95788c4

File tree

4 files changed

+30
-13
lines changed

4 files changed

+30
-13
lines changed

README.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ You can also instrument your server-side code and produce combined coverage repo
7373
```js
7474
const express = require('express')
7575
const app = express()
76-
require('@cypress/code-coverage/middleware')(app)
76+
require('@cypress/code-coverage/middleware/express')(app)
7777
```
7878

7979
**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)
8282
// https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md
8383
/* istanbul ignore next */
8484
if (global.__coverage__) {
85-
require('@cypress/code-coverage/middleware')(app)
85+
require('@cypress/code-coverage/middleware/express')(app)
8686
}
8787
```
8888

8989
If you use Hapi server, define the endpoint yourself and return the object
9090

9191
```js
92-
// https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md
93-
/* istanbul ignore next */
9492
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__ })
103104
}
104105
```
105106

middleware.js middleware/express.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// for Express.js
12
module.exports = app => {
23
// expose "GET __coverage__" endpoint that just returns
34
// global coverage information (if the application has been instrumented)

middleware/hapi.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// for Hapi.js
2+
module.exports = server => {
3+
// expose "GET __coverage__" endpoint that just returns
4+
// global coverage information (if the application has been instrumented)
5+
6+
// https://hapijs.com/tutorials/routing?lang=en_US
7+
server.route({
8+
method: 'GET',
9+
path: '/__coverage__',
10+
handler () {
11+
return { coverage: global.__coverage__ }
12+
}
13+
})
14+
}

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
},
3535
"homepage": "https://github.com/cypress-io/code-coverage#readme",
3636
"files": [
37-
"*.js"
37+
"*.js",
38+
"middleware"
3839
],
3940
"publishConfig": {
4041
"access": "public"

0 commit comments

Comments
 (0)