1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Make CI run unit tests for all packages by consolidating name of NPM script

Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2023-03-17 10:26:10 +02:00
parent 16573d11b0
commit 3688967e4f
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
8 changed files with 8 additions and 8 deletions

View File

@ -33,7 +33,7 @@
"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": "jest --coverage --runInBand", "test:unit": "jest --coverage --runInBand",
"lint": "lens-lint", "lint": "lens-lint",
"lint:fix": "lens-lint --fix" "lint:fix": "lens-lint --fix"
}, },

View File

@ -26,7 +26,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"dev": "webpack --mode=development --watch", "dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand", "test:unit": "jest --coverage --runInBand",
"lint": "lens-lint", "lint": "lens-lint",
"lint:fix": "lens-lint --fix" "lint:fix": "lens-lint --fix"
}, },

View File

@ -26,7 +26,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"dev": "webpack --mode=development --watch", "dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand", "test:unit": "jest --coverage --runInBand",
"lint": "lens-lint", "lint": "lens-lint",
"lint:fix": "lens-lint --fix" "lint:fix": "lens-lint --fix"
}, },

View File

@ -26,7 +26,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"dev": "webpack --mode=development --watch", "dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand", "test:unit": "jest --coverage --runInBand",
"lint": "lens-lint", "lint": "lens-lint",
"lint:fix": "lens-lint --fix" "lint:fix": "lens-lint --fix"
}, },

View File

@ -26,7 +26,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"dev": "webpack --mode=development --watch", "dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand", "test:unit": "jest --coverage --runInBand",
"lint": "lens-lint", "lint": "lens-lint",
"lint:fix": "lens-lint --fix" "lint:fix": "lens-lint --fix"
}, },

View File

@ -22,7 +22,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"dev": "webpack --mode=development --watch", "dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand" "test:unit": "jest --coverage --runInBand"
}, },
"peerDependencies": { "peerDependencies": {
"@k8slens/test-utils": "^1.0.0-alpha.1", "@k8slens/test-utils": "^1.0.0-alpha.1",

View File

@ -22,7 +22,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"dev": "webpack --mode=development --watch", "dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand" "test:unit": "jest --coverage --runInBand"
}, },
"peerDependencies": { "peerDependencies": {
"@ogre-tools/injectable": "^15.1.2", "@ogre-tools/injectable": "^15.1.2",

View File

@ -22,7 +22,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"dev": "webpack --mode=development --watch", "dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand" "test:unit": "jest --coverage --runInBand"
}, },
"peerDependencies": { "peerDependencies": {
"@astronautlabs/jsonpath": "^1.1.0", "@astronautlabs/jsonpath": "^1.1.0",