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/",
|
"clean": "rimraf dist/",
|
||||||
"build": "webpack --config webpack.ts",
|
"build": "webpack --config webpack.ts",
|
||||||
"dev": "webpack --mode=development --watch --config webpack.ts",
|
"dev": "webpack --mode=development --watch --config webpack.ts",
|
||||||
"test:unit": "jest --coverage --runInBand",
|
|
||||||
"lint": "lens-lint",
|
"lint": "lens-lint",
|
||||||
"lint:fix": "lens-lint --fix"
|
"lint:fix": "lens-lint --fix"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -26,7 +26,6 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack",
|
"build": "webpack",
|
||||||
"dev": "webpack --mode=development --watch",
|
"dev": "webpack --mode=development --watch",
|
||||||
"test:unit": "jest --coverage --runInBand",
|
|
||||||
"lint": "lens-lint",
|
"lint": "lens-lint",
|
||||||
"lint:fix": "lens-lint --fix"
|
"lint:fix": "lens-lint --fix"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1,2 +1,3 @@
|
|||||||
module.exports =
|
const config = require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
||||||
require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
|
||||||
|
module.exports = { ...config, coverageThreshold: undefined };
|
||||||
|
|||||||
@ -21,8 +21,7 @@
|
|||||||
"homepage": "https://github.com/lensapp/lens",
|
"homepage": "https://github.com/lensapp/lens",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack",
|
"build": "webpack",
|
||||||
"dev": "webpack --mode=development --watch",
|
"dev": "webpack --mode=development --watch"
|
||||||
"test:unit": "jest --coverage --runInBand"
|
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@ogre-tools/injectable": "^15.1.2",
|
"@ogre-tools/injectable": "^15.1.2",
|
||||||
|
|||||||
@ -1,2 +1,3 @@
|
|||||||
module.exports =
|
const config = require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
||||||
require("@k8slens/jest").monorepoPackageConfig(__dirname).configForReact;
|
|
||||||
|
module.exports = { ...config, coverageThreshold: undefined };
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user