mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Remove check for coverage in packages which are not ready for it
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
parent
d5b496e886
commit
56d3af3439
@ -33,7 +33,6 @@
|
||||
"clean": "rimraf dist/",
|
||||
"build": "webpack --config webpack.ts",
|
||||
"dev": "webpack --mode=development --watch --config webpack.ts",
|
||||
"test:unit": "jest --coverage --runInBand",
|
||||
"lint": "lens-lint",
|
||||
"lint:fix": "lens-lint --fix"
|
||||
},
|
||||
|
||||
@ -26,7 +26,6 @@
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"dev": "webpack --mode=development --watch",
|
||||
"test:unit": "jest --coverage --runInBand",
|
||||
"lint": "lens-lint",
|
||||
"lint:fix": "lens-lint --fix"
|
||||
},
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
module.exports =
|
||||
require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
||||
const config = require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
||||
|
||||
module.exports = { ...config, coverageThreshold: undefined };
|
||||
|
||||
@ -21,8 +21,7 @@
|
||||
"homepage": "https://github.com/lensapp/lens",
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"dev": "webpack --mode=development --watch",
|
||||
"test:unit": "jest --coverage --runInBand"
|
||||
"dev": "webpack --mode=development --watch"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@ogre-tools/injectable": "^15.1.2",
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
module.exports =
|
||||
require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
||||
const config = require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
||||
|
||||
module.exports = { ...config, coverageThreshold: undefined };
|
||||
|
||||
Loading…
Reference in New Issue
Block a user