code-test-quality
Analyze test quality: smells, empty assertions, flaky patterns, coverage gaps. Use when tests are unreliable, coverage is misleading, or after major refactors.
What this skill does
# /code:test-quality Analyze test suite for quality issues and reliability. ## When to Use This Skill | Use this skill when... | Use something else when... | |---|---| | Test suite passes but bugs still ship | Setting up test framework → /configure:tests | | Coverage numbers are high but quality feels low | Setting up coverage thresholds → /configure:coverage | | Tests are flaky or timing-dependent | Looking for code anti-patterns → /code:antipatterns | | After major refactor, need test health check | Running tests → /test:run | ## Context - Test files: !`find . -type f \( -name "*.test.*" -o -name "*.spec.*" -o -name "test_*.py" -o -name "*_test.py" -o -name "*_test.go" -o -name "*_test.rs" \) -not -path "*/node_modules/*"` - Test config: !`find . -maxdepth 2 \( -name "vitest.config.*" -o -name "jest.config.*" -o -name "pytest.ini" -o -name "pyproject.toml" -o -name "conftest.py" \) -type f` ## Parameters - `$1`: Path to analyze (defaults to current directory) - `--focus`: Analysis focus — `smells` (default), `coverage`, `flaky`, or `all` ## Execution Execute this test quality analysis: ### Step 1: Discover test suite Scan the target path for test files. Categorize by: - Unit tests - Integration tests - E2E tests Count total test files and estimate test-to-source ratio. ### Step 2: Detect test smells Scan test files for these anti-patterns: **Empty tests (Critical):** - Test bodies with no assertions - Tests that only call the function without checking results - `expect()` or `assert` never called **Weak assertions (High):** - `expect(result).toBeTruthy()` on objects (always passes) - `assert result` without specific value checks - `assertEqual(len(result), len(result))` (tautologies) - Snapshot tests without meaningful structure checks **Test duplication (Medium):** - Copy-pasted test bodies with minor variations - Same setup/teardown repeated across many tests - Missing parameterized/table-driven patterns **Missing edge cases (Medium):** - No tests for error paths - No tests for empty/null/undefined inputs - No boundary value tests - No tests for concurrent access (where applicable) **Flaky patterns (High):** - `setTimeout` / `sleep` in tests - Hardcoded ports or file paths - Date/time-dependent assertions without mocking - Tests depending on external services without mocks - Non-deterministic ordering assumptions **Overly broad mocks (Medium):** - Mocking implementation details instead of interfaces - Mock that returns the expected value (circular logic) - Tests that pass even when implementation is deleted ### Step 3: Analyze coverage quality (if --focus coverage or all) If coverage data is available: 1. Identify files with 0% coverage 2. Find files with high line coverage but low branch coverage 3. Detect "coverage padding" — tests that execute code but don't assert behavior 4. Identify critical paths without coverage (error handlers, auth, data validation) ### Step 4: Report findings Print categorized results: ``` Test Quality Report =================== Test files: N Test-to-source ratio: N:1 Smells Found: Critical: N (empty tests, no assertions) High: N (weak assertions, flaky patterns) Medium: N (duplication, missing edge cases) Low: N (style issues) Top Issues: 1. [file:line] Empty test - "should handle X" has no assertions 2. [file:line] Flaky - uses setTimeout(500) instead of async await 3. [file:line] Weak assertion - toBeTruthy on object (always passes) Recommendations: - Add assertions to N empty tests - Replace N setTimeout calls with proper async patterns - Add error path tests for N untested handlers ``` ### Step 5: Suggest improvements For each finding, provide specific fix guidance: - Empty test → show what assertion to add - Flaky pattern → show the async/mock alternative - Missing edge case → suggest specific test cases ## Post-Actions - If test framework not configured → suggest `/configure:tests` - If coverage not set up → suggest `/configure:coverage` - If many smells found → suggest fixing critical ones first - If good quality → report health score and suggest maintaining it ## Agentic Optimizations | Context | Command | |---|---| | Find empty tests (JS) | `grep -rn "it\|test" --include="*.test.*" -l` then check for assertions | | Find sleeps in tests | `grep -rn "setTimeout\|sleep\|time.sleep" --include="*.test.*"` | | Coverage report (Vitest) | `npx vitest run --coverage --reporter=json` | | Coverage report (pytest) | `pytest --cov --cov-report=json` | | Quick smell scan | Grep for assertion-free test bodies |
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.