mirror of
https://github.com/sweetwisdom/everything-claude-code-zh.git
synced 2026-03-21 22:10:09 +00:00
fix: restore missing files (package.json etc) and fix sync script logic
This commit is contained in:
30
docs/zh-TW/rules/testing.md
Normal file
30
docs/zh-TW/rules/testing.md
Normal 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 測試專家
|
||||
Reference in New Issue
Block a user