testing-qa
Set Up Comprehensive Testing QA Workflow
This skill provides a structured testing and QA workflow covering unit tests, integration tests, E2E testing, browser automation, and quality gates for production-ready software.
スキルZIPをダウンロード
Claudeでアップロード
設定 → 機能 → スキル → スキルをアップロードへ移動
オンにして利用開始
テストする
「testing-qa」を使用しています。 Use @testing-qa to design testing strategy
期待される結果:
- Here is a comprehensive testing strategy for your project:
- ## Phase 1: Test Strategy
- - Define testing scope and objectives
- - Choose testing frameworks (Jest, pytest, Playwright)
- - Set up test infrastructure
- - Plan test coverage (target: 80%+)
- ## Testing Pyramid
- - Unit Tests: 70% (fast, focused on units)
- - Integration Tests: 20% (service interactions)
- - E2E Tests: 10% (critical user paths)
「testing-qa」を使用しています。 Use @testing-qa to create E2E tests
期待される結果:
- I recommend using Playwright for E2E testing. Here is a workflow:
- 1. Install Playwright: npm init playwright@latest
- 2. Configure browser automation
- 3. Write test scripts for critical paths
- 4. Set up visual regression testing
- 5. Configure parallel execution
セキュリティ監査
安全This skill is a documentation-only markdown file describing a testing and QA workflow bundle. The static analyzer flagged backtick syntax in markdown as potential shell commands, but this is a false positive. The file contains no executable code, no network requests, and no system access. All 67 detected patterns are false positives from markdown documentation.
高リスクの問題 (3)
品質スコア
作れるもの
Set Up Testing Infrastructure
Use this workflow to establish a comprehensive testing strategy for a new project, including unit tests, integration tests, and E2E tests.
Automate Browser Testing
Implement browser automation and visual regression testing for web applications using Playwright and screenshot tools.
Establish Quality Gates
Define quality gates with linting, code review, security scanning, and verification steps before production deployment.
これらのプロンプトを試す
Use @testing-qa to design a comprehensive testing strategy for my project. I need to cover unit tests, integration tests, and E2E tests.
Use @testing-qa to help me write unit tests. I want to cover JavaScript with Jest and Python with pytest.
Use @testing-qa to create end-to-end tests using Playwright. I need to test critical user paths.
Use @testing-qa to define quality gates for my project. Include linting, code review, security scanning, and test coverage requirements.
ベストプラクティス
- Follow the testing pyramid: prioritize unit tests (70%) over integration (20%) and E2E (10%)
- Use quality gates to enforce test coverage thresholds before deployment
- Automate visual regression testing to catch UI changes automatically
回避
- Skipping unit tests in favor of only E2E tests (slow and brittle)
- Setting unrealistic test coverage targets without considering test maintenance
- Ignoring security scanning in the quality gates