Browse Source

Updating server package to always generate coverage report but don't display as text.

pull/4023/head
mike12345567 5 years ago
parent
commit
37211e4e9d
  1. 8
      packages/server/package.json

8
packages/server/package.json

@ -33,8 +33,7 @@
},
"scripts": {
"test": "jest --testPathIgnorePatterns=routes && npm run test:integration",
"test:integration": "jest routes --runInBand",
"test:coverage": "jest routes --runInBand --coverage",
"test:integration": "jest routes --runInBand --coverage",
"test:watch": "jest --watch",
"run:docker": "node src/index",
"dev:builder": "cross-env PORT=4001 nodemon src/index.js",
@ -54,6 +53,11 @@
"src/**/*.js",
"!**/node_modules/**",
"!src/db/views/*.js"
],
"coverageReporters": [
"lcov",
"json",
"clover"
]
},
"keywords": [

Loading…
Cancel
Save