testing-strategy-builderlisted
Install: claude install-skill aiskillstore/marketplace
# Testing Strategy Builder
## Overview
This skill provides comprehensive guidance for building effective testing strategies that ensure software quality, reliability, and maintainability. Whether starting from scratch or improving existing test coverage, this framework helps teams design robust testing approaches.
**When to use this skill:**
- Planning testing strategy for new projects or features
- Improving test coverage in existing codebases
- Establishing quality gates and coverage targets
- Designing test automation architecture
- Creating test plans and test cases
- Choosing appropriate testing tools and frameworks
- Implementing continuous testing in CI/CD pipelines
**Bundled Resources:**
- `references/code-examples.md` - Detailed testing code examples
- `templates/test-plan-template.md` - Comprehensive test plan template
- `templates/test-case-template.md` - Test case documentation template
- `checklists/test-coverage-checklist.md` - Coverage verification checklist
## Required Tools
This skill references the following testing tools. Not all are required - the skill will recommend appropriate tools based on your project.
### JavaScript/TypeScript Testing
- **Jest:** Most popular testing framework
- **Install:** `npm install --save-dev jest @types/jest`
- **Config:** `npx jest --init`
- **Vitest:** Vite-native testing framework
- **Install:** `npm install --save-dev vitest`
- **Config:** Add to vite.config.ts
- **Playwright:** End-to-end testing
- **I