Skip to content

Commit 5eab2d3

Browse files
authored
:chore: Remove jest dependency from packages (#1061)
1 parent 2edb373 commit 5eab2d3

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

web_ui/package-lock.json

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web_ui/packages/core/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,18 @@
99
"@geti/config": "*",
1010
"@testing-library/react": "^16.3.0",
1111
"@testing-library/user-event": "^14.6.1",
12-
"@types/jest": "^29.5.14",
1312
"@types/node": "^22.15.3",
1413
"eslint": "^9.31.0",
1514
"eslint-plugin-header": "^3.1.1",
1615
"eslint-plugin-import": "^2.32.0",
17-
"eslint-plugin-jest": "^28.11.0",
1816
"eslint-plugin-jsx-a11y": "^6.10.2",
1917
"eslint-plugin-react": "^7.37.5",
2018
"eslint-plugin-react-hooks": "^5.2.0",
21-
"jest": "^29.7.0",
2219
"typescript": "^5.8.3"
2320
},
2421
"type": "module",
2522
"scripts": {
26-
"test:unit": "jest --config jest.config.js --watchAll=false",
23+
"test:unit": "npm run test:unit --workspace=root --config jest.config.js --watchAll=false",
2724
"type-check": "tsc --noEmit -p tsconfig.json",
2825
"lint": "eslint \"src/**/*.ts*\" --max-warnings 0",
2926
"lint:fix": "eslint --fix \"./src/**/*.ts*\""

web_ui/packages/ui/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,17 @@
1818
"@testing-library/jest-dom": "^6.6.4",
1919
"@testing-library/react": "^16.3.0",
2020
"@testing-library/user-event": "^14.6.1",
21-
"@types/jest": "^29.5.14",
2221
"eslint": "^9.25.1",
2322
"eslint-plugin-header": "^3.1.1",
2423
"eslint-plugin-import": "^2.32.0",
25-
"eslint-plugin-jest": "^28.11.0",
2624
"eslint-plugin-jsx-a11y": "^6.10.2",
2725
"eslint-plugin-playwright": "^2.2.0",
2826
"eslint-plugin-react": "^7.37.5",
2927
"eslint-plugin-react-hooks": "^5.2.0",
30-
"jest": "^29.7.0",
3128
"typescript": "^5.8.3"
3229
},
3330
"scripts": {
34-
"test:unit": "jest --config jest.config.js --watchAll=false",
31+
"test:unit": "npm run test:unit --workspace=root --config jest.config.js --watchAll=false",
3532
"type-check": "tsc --noEmit -p tsconfig.json",
3633
"lint": "eslint \"src/**/*.ts*\" --max-warnings 0",
3734
"lint:fix": "eslint --fix \"./src/**/*.ts*\""

0 commit comments

Comments
 (0)