What problem does it solve?
This Skill eliminates unreliable CI builds by automatically identifying flaky tests through CI history analysis and code pattern scanning.
Core Features & Use Cases
- Flaky Test Detection: Analyzes CI history and test execution patterns to identify non-deterministic tests.
Quick Start
When you say "find flaky tests", this Skill analyzes your CI history for inconsistent test results and scans code for flaky patterns like timing issues and async dependencies.
Example Output
"Flaky Test Report
Analysis Period: Last 30 days
Total Tests: 450
Flaky Tests Found: 12 (2.7%)
Critical Flaky Tests (< 50% pass rate):
- test/api/login.test.ts:45
Pass Rate: 42% (21/50 runs)
Category: Timing
Pattern: Uses Date.now() for token expiry
Root Cause: Test creates token and checks expiry in same millisecond sometimes, different millisecond other times.
Recommended Fix: Use mocked time with vi.setSystemTime()"