Skip to content

Commit fc95cbe

Browse files
authored
Move full stack coverage example (#183)
* rename to backend * update circle file * fix circle yml * remove extra package scripts
1 parent fd04395 commit fc95cbe

File tree

11 files changed

+48
-18
lines changed

11 files changed

+48
-18
lines changed

.circleci/config.yml

+14-12
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,15 @@ workflows:
7575
- run: npx nyc report --check-coverage true --lines 100 --include cypress/unit.js
7676

7777
- cypress/run:
78-
# TODO switch to separate example in "examples/..."
7978
name: backend coverage
8079
requires:
8180
- cypress/install
82-
8381
# grab the workspace created by cypress/install job
8482
attach-workspace: true
85-
86-
start: npm run start:test:backend
87-
command: npx cypress run --config-file cypress-backend.json
83+
working_directory: examples/backend
84+
start: npm start
85+
wait-on: 'http://localhost:3003'
86+
command: '../../node_modules/.bin/cypress run'
8887

8988
# there are no jobs to follow this one
9089
# so no need to save the workspace files (saves time)
@@ -94,12 +93,16 @@ workflows:
9493
# you can click on it in the CircleCI UI
9594
# to see live static HTML site
9695
- store_artifacts:
97-
path: coverage
98-
# print code coverage summary to the terminal
99-
# and make sure there the coverage is above certain limit
100-
- run: npx nyc report --check-coverage true --lines 72
101-
# and look at the server index file - should be fully covered
102-
- run: npx nyc report --check-coverage true --lines 100 --include test-backend/index.js
96+
path: examples/backend/coverage
97+
- run:
98+
command: npm run coverage:report
99+
working_directory: examples/backend
100+
- run:
101+
name: Check code coverage 📈
102+
command: |
103+
node ../../scripts/check-coverage server.js
104+
node ../../scripts/only-covered server.js
105+
working_directory: examples/backend
103106

104107
- cypress/run:
105108
attach-workspace: true
@@ -180,7 +183,6 @@ workflows:
180183
- run:
181184
command: npm run coverage:check
182185
working_directory: examples/ts-example
183-
184186
- run:
185187
name: Check code coverage 📈
186188
command: |

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ module.exports = (on, config) => {
134134

135135
## Instrument backend code
136136

137-
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
138140

139141
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`.
140142
2. Add an endpoint that returns collected coverage. If you are using Express, you can simply do
@@ -184,7 +186,7 @@ if (global.__coverage__) {
184186
}
185187
```
186188

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.
188190

189191
## Custom report folder
190192

examples/backend/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# example: backend
2+
3+
> Getting code coverage from backend

examples/backend/cypress.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"fixturesFolder": false,
3+
"baseUrl": "http://localhost:3003",
4+
"env": {
5+
"codeCoverage": {
6+
"url": "http://localhost:3003/__coverage__"
7+
}
8+
}
9+
}
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = (on, config) => {
2+
require('../../../../task')(on, config)
3+
on('file:preprocessor', require('../../../../use-babelrc'))
4+
return config
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import '../../../../support'

examples/backend/package.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "example-backend",
3+
"description": "Code coverage for backend",
4+
"devDependencies": {},
5+
"scripts": {
6+
"start": "../../node_modules/.bin/nyc --silent node server/server",
7+
"cy:open": "../../node_modules/.bin/cypress open",
8+
"dev": "../../node_modules/.bin/start-test 3003 cy:open",
9+
"coverage:report": "../../node_modules/.bin/nyc report"
10+
}
11+
}
File renamed without changes.

test-backend/index.js examples/backend/server/server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const port = 3003
88
if (global.__coverage__) {
99
console.log('have code coverage, will add middleware for express')
1010
console.log(`to fetch: GET :${port}/__coverage__`)
11-
require('../middleware/express')(app)
11+
require('../../../middleware/express')(app)
1212
}
1313

1414
app.use(express.static(__dirname))

package.json

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
"dev:no:coverage": "start-test 1234 'cypress open --env coverage=false'",
1515
"format": "prettier --write '*.js'",
1616
"format:check": "prettier --check '*.js'",
17-
"start:test:backend": "nyc --silent node test-backend",
18-
"cy:backend": "cypress open --config-file cypress-backend.json",
19-
"dev:backend": "start-test start:test:backend 3003 cy:backend",
2017
"check:markdown": "find *.md -exec npx markdown-link-check {} \\;",
2118
"effective:config": "circleci config process .circleci/config.yml | sed /^#/d"
2219
},

0 commit comments

Comments
 (0)