jest
Installation
SKILL.md
Jest
Standard test runner for JS/TS projects with built-in mocking, assertions, and coverage.
When to Use
- Unit, integration, or snapshot testing
- Testing JS/TS codebases
- Mocking dependencies and external modules
Don't use for:
- E2E browser testing (use Playwright or Cypress)
- React component queries (use react-testing-library skill)