用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wojons/skills --skill testing-regression命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | testing-regression |
| description | Run regression tests to ensure new changes don't break existing functionality |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Run regression tests to ensure new changes don't break existing functionality, coordinating with other test types for comprehensive coverage.
Use this skill when:
Coordinate with other test types:
Test selection strategies:
Integration with development workflow:
# Run full regression suite
npm run test:regression # Full regression suite
npm run test:regression:quick # Quick regression (smoke tests)
npm run test:regression:selective # Tests related to changed files
# CI/CD integration
npm run test:ci # CI regression suite
npm run test:pr # PR validation tests
# Test selection based on changes
npx jest --listTests | grep -E "(auth|user)" # Select auth-related tests
npm run test:affected -- --base=main # Run tests for changed code
# Coordinate with other test types
npm run test:unit && npm run test:integration && npm run test:e2e:critical
Regression Test Results:
──────────────────────────────
Test Scope: Selective regression (changed: auth module)
Execution Order:
1. Unit Tests (auth service): ✅ 42/42 passed
2. Integration Tests (auth API): ✅ 8/8 passed
3. E2E Tests (login flow): ✅ 3/3 passed
4. API Contract Tests: ✅ No breaking changes
Dependencies Verified:
- User service depends on auth: ✅ No issues
- Session management: ✅ Compatible
- Third-party auth providers: ✅ Still functional
Impact Assessment:
- High Risk Areas: 0 affected
- Medium Risk Areas: 1 (password reset flow)
- Low Risk Areas: 3
Recommendation:
- All regression tests pass
- Safe to merge/deploy
- Monitor password reset in staging