What problem does it solve? It prevents untested code from being shipped by enforcing a consistent testing workflow, quality rules, and coverage targets for every feature or bug fix. ## Core Features & Use Cases - Structured Test Workflow: Guides test writing from risk identification through execution and coverage verification using Vitest 4. - Quality Rules: Enforces behavior-focused test descriptions, failure-path coverage, and one-behavior-per-test discipline. - Dual Environments: Supports node and jsdom test environments with clear file naming conventions for unit, integration, regression, and e2e tests. - Use Case: When adding a new feature to an Electron app, use this Skill to write unit and integration tests, run the full suite, and confirm the 80% coverage target before committing. ## Quick Start Write tests for the new conversation caching feature and run the full test suite to verify coverage meets the target.