What problem does it solve?
Writing tests can be a tedious, time-consuming task that often gets skipped, leading to bugs and technical debt. This friction is particularly challenging for developers with ADHD. This Skill makes testing effortless.
Core Features & Use Cases
- Automatic Test Generation: Analyzes your code and generates unit, integration, and E2E tests.
- Learns Your Style: Recalls your preferred testing frameworks, assertion styles, and coverage requirements from memory.
- Regression Test Creation: Automatically generates regression tests after bug fixes to prevent recurrence.
- Use Case: You've just written a new function. Instead of manually crafting tests, you say "write tests for this function." The
testing-builder analyzes your code, applies your preferred testing framework (e.g., Vitest), and generates a full suite of tests covering happy paths, edge cases, and invalid inputs.
Quick Start
After writing or modifying code, simply say:
write tests for this function
Or to create a regression test after a bug fix:
create regression test for this bug