1
0
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:
Janne Savolainen 2023-03-17 10:43:01 +02:00
parent d5b496e886
commit 56d3af3439
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
5 changed files with 7 additions and 8 deletions

View File

@ -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"
},

View File

@ -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"
},

View File

@ -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 };

View File

@ -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",

View File

@ -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 };