- 添加 frontend/package.json 包含 Vitest 测试依赖 - 添加 backend/.gitignore 排除 __pycache__, .coverage 等 - 添加 frontend/.gitignore 排除 node_modules, dist 等 测试运行验证: - 后端: 268 tests skipped (TDD 红灯阶段) - 前端: 95 tests skipped (TDD 红灯阶段) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
201 B
JSON
10 lines
201 B
JSON
{
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@vitejs/plugin-react": "^5.1.2",
|
|
"jsdom": "^28.0.0",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|