← スキル一覧に戻る

testing-strategies
by Zate
⭐ 4🍴 0📅 2026年1月24日
SKILL.md
name: testing-strategies description: This skill should be used for test coverage, test pyramid, unit/integration/E2E test design, TDD, BDD, mocking strategies, test doubles, test architecture whenToUse: Designing tests, coverage strategy, test pyramid, TDD, BDD, mocking, test doubles, test organization, E2E testing, integration testing strategy whenNotToUse: Simple test additions, established patterns, single test file edits seeAlso:
- skill: architecture-patterns when: test architecture decisions
- skill: react-patterns when: React component testing
- skill: python-patterns when: pytest patterns
- skill: go-patterns when: Go table-driven tests
- skill: superpowers:test-driven-development when: writing tests first, rigorous TDD discipline
Testing Strategies
Comprehensive test design for deployment readiness.
Test Pyramid
/ E2E \ Few, slow, expensive
/ Integ \ Some, medium
/ Unit \ Many, fast, cheap
Coverage Guidelines
| Level | Coverage | Focus |
|---|---|---|
| Unit | 80%+ | Business logic |
| Integration | Key paths | APIs, DB |
| E2E | Critical flows | User journeys |
Unit Test Patterns
- Test one thing per test
- Clear arrange/act/assert
- Mock external dependencies
- Fast execution (<1s each)
Integration Test Patterns
- Test real dependencies
- Use test databases
- Clean up after tests
- Cover API contracts
E2E Test Patterns
- Critical user journeys only
- Stable selectors
- Retry flaky network calls
- Parallel where possible
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です