mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
Make test coverage to be optional.
This commit is contained in:
parent
97e6120b3f
commit
7f64f55397
@ -1,5 +1,5 @@
|
||||
module.exports = {
|
||||
verbose: false,
|
||||
collectCoverage: true,
|
||||
collectCoverage: false,
|
||||
coverageDirectory: './coverage/',
|
||||
};
|
||||
|
@ -6,7 +6,7 @@
|
||||
"scripts": {
|
||||
"lint": "eslint ./src/*",
|
||||
"test": "jest",
|
||||
"ci": "npm run lint && npm run test",
|
||||
"ci": "npm run lint && npm run test -- --coverage",
|
||||
"codecov": "codecov"
|
||||
},
|
||||
"repository": {
|
||||
|
Loading…
Reference in New Issue
Block a user