testing-qa
设置全面的测试 QA 工作流程
此技能提供结构化的测试和 QA 工作流程,涵盖单元测试、集成测试、E2E 测试、浏览器自动化和生产就绪软件的质量门禁。
스킬 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)
품질 점수
만들 수 있는 것
设置测试基础设施
使用此工作流程为新项目建立全面的测试策略,包括单元测试、集成测试和 E2E 测试。
自动化浏览器测试
使用 Playwright 和截图工具为 Web 应用程序实施浏览器自动化和视觉回归测试。
建立质量门禁
在生产部署前定义包含代码检查、代码审查、安全扫描和验证步骤的质量门禁。
이 프롬프트를 사용해 보세요
使用 @testing-qa 为我的项目设计全面的测试策略。我需要涵盖单元测试、集成测试和 E2E 测试。
使用 @testing-qa 帮助我编写单元测试。我想覆盖 JavaScript(使用 Jest)和 Python(使用 pytest)。
使用 @testing-qa 使用 Playwright 创建端到端测试。我需要测试关键的用户路径。
使用 @testing-qa 为我的项目定义质量门禁。包括代码检查、代码审查、安全扫描和测试覆盖率要求。
모범 사례
- 遵循测试金字塔:优先单元测试(70%),其次是集成测试(20%)和 E2E 测试(10%)
- 使用质量门禁在部署前强制执行测试覆盖率阈值
- 自动化视觉回归测试以自动捕获 UI 变化
피하기
- 跳过单元测试只做 E2E 测试(慢且脆弱)
- 设置不切实际的测试覆盖率目标而不考虑测试维护
- 在质量门禁中忽略安全扫描