fix: restore missing files (package.json etc) and fix sync script logic

This commit is contained in:
xuxiang
2026-01-31 18:55:45 +08:00
parent b1d03833b9
commit 0e5571998f
85 changed files with 17074 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
# 測試需求
## 最低測試覆蓋率80%
測試類型(全部必要):
1. **單元測試** - 個別函式、工具、元件
2. **整合測試** - API 端點、資料庫操作
3. **E2E 測試** - 關鍵使用者流程Playwright
## 測試驅動開發
強制工作流程:
1. 先撰寫測試RED
2. 執行測試 - 應該失敗
3. 撰寫最小實作GREEN
4. 執行測試 - 應該通過
5. 重構IMPROVE
6. 驗證覆蓋率80%+
## 測試失敗疑難排解
1. 使用 **tdd-guide** Agent
2. 檢查測試隔離
3. 驗證 mock 是否正確
4. 修復實作,而非測試(除非測試是錯的)
## Agent 支援
- **tdd-guide** - 主動用於新功能,強制先撰寫測試
- **e2e-runner** - Playwright E2E 測試專家