TEST-FE-CAL-001 add calendar frontend tests

This commit is contained in:
zhi
2026-04-01 11:05:58 +00:00
parent 978d69eea3
commit e4804128f6
5 changed files with 2922 additions and 6 deletions

View File

@@ -6,20 +6,30 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.22.0",
"axios": "^1.6.7",
"dayjs": "^1.11.10"
"react-router-dom": "^6.22.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^4.1.2",
"jsdom": "^29.0.1",
"typescript": "^5.4.0",
"vite": "^5.1.0"
"vite": "^5.1.0",
"vitest": "^4.1.2"
}
}