askill
testing

testingSafety 95Repository

Testing strategies and methodologies including TDD and E2E testing. Use when writing tests, implementing TDD workflow, or setting up E2E test infrastructure.

28 stars
1.2k downloads
Updated 2/26/2026

Package Files

Loading files...
SKILL.md

测试策略

关联 Agent: tdd-guide(测试驱动开发)、code-reviewer(可测试性评估)、build-error-resolver(修复后测试验证)

本技能提供测试策略选择指南,整合 TDD(测试驱动开发)和 E2E(端到端测试)最佳实践。

子文件

测试金字塔

        ┌─────────┐
        │  E2E   │  少量:验证核心流程
        ├─────────┤
        │集成测试 │  中等:验证组件交互
        ├─────────┤
        │单元测试 │  大量:验证独立单元
        └─────────┘

测试策略选择

场景推荐策略参阅文件
新功能开发TDD(测试先行)tdd.md
Bug 修复先写失败测试,再修复tdd.md
核心用户流程验证E2E 测试e2e.md
重构现有代码先补测试,再重构tdd.md
UI 交互验证E2E + 视觉回归e2e.md

覆盖率目标

代码类型单元测试E2E 测试
核心业务逻辑100%关键流程
普通业务代码80%+可选
工具函数80%+不需要
UI 组件70%+关键交互

最佳实践

  1. 测试先行 - TDD 循环:RED → GREEN → REFACTOR
  2. 独立隔离 - 每个测试独立运行,无共享状态
  3. 快速反馈 - 单元测试 < 50ms,E2E 适度控制
  4. 语义命名 - 测试名称描述行为,不描述实现
  5. 分层覆盖 - 单元测试多,E2E 测试精

TDD 循环速览

RED → GREEN → REFACTOR → REPEAT

RED:      写一个失败的测试
GREEN:    写最少的代码使测试通过
REFACTOR: 改进代码,保持测试绿色
REPEAT:   下一个场景

详细指南参阅 tdd.md

E2E 测试速览

tests/
├── e2e/                       # E2E 测试目录
│   ├── auth/                  # 认证流程
│   └── core/                  # 核心功能
├── pages/                     # Page Object Model
└── playwright.config.ts

详细指南参阅 e2e.md

测试命令

# 单元测试
npm test
npm test -- --coverage

# E2E 测试
npx playwright test
npx playwright test --headed  # 可视化
npx playwright test --debug   # 调试模式

记住:测试不是可选项。它是支持自信重构、快速开发和生产可靠性的安全网。

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

76/100Analyzed 3/1/2026

Well-structured testing skill with clear TDD/E2E guidance, testing pyramid, strategy selection tables, and command references. Acts as an index/overview referencing 5 sub-documents. Includes actionable test commands and best practices. Scores well on clarity, safety, and organization. Minor deduction for being reference-style rather than complete standalone content, but appropriate for skill that links to detailed sub-guides.

95
80
70
70
65

Metadata

Licenseunknown
Version-
Updated2/26/2026
Publisherxiaobei930

Tags

ci-cdsecuritytesting