[#38] Adding several missing tests and correct CI setup

This commit is contained in:
Camille Moussu
2025-07-18 12:55:42 +02:00
parent 7c8b14e961
commit a52ded03fb
19 changed files with 2938 additions and 1278 deletions
+11 -4
View File
@@ -27,14 +27,16 @@
"react-redux": "^9.2.0",
"react-router-dom": "^6.23.1",
"redux-first-history": "^5.2.0",
"ts-node": "^10.9.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "PORT=5000 rsbuild dev",
"build": "rsbuild build",
"preview": "rsbuild preview",
"test": "jest test",
"lint": "eslint src"
"test": "jest",
"lint": "eslint src",
"jest-preview": "jest-preview"
},
"eslintConfig": {
"extends": [
@@ -55,6 +57,8 @@
]
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@rsbuild/core": "^1.4.3",
"@rsbuild/plugin-react": "^1.3.3",
"@rsbuild/plugin-svgr": "^1.2.0",
@@ -62,12 +66,15 @@
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/jest": "^30.0.0",
"babel-jest": "^30.0.4",
"eslint": "^8.57.1",
"eslint-config-react-app": "^7.0.1",
"i18next-resources-for-ts": "1.4.0",
"jest": "^27.5.1",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"jest-preview": "^0.3.1",
"ts-jest": "^29.4.0",
"typescript": "^4.9.5"
}
}