testing-practices
Installation
SKILL.md
Testing Practices
This skill covers comprehensive testing strategies for modern JavaScript/TypeScript applications with Remix and SST.
Core Philosophy
Good tests are:
- Fast: Run quickly to encourage frequent execution
- Isolated: Each test is independent
- Readable: Clear what's being tested and why
- Reliable: Same input always produces same output
- Maintainable: Easy to update when code changes