testing-unit
Installation
SKILL.md
Unit Testing
Run and manage unit tests across multiple languages and frameworks.
Run Jest tests
# Run all Jest tests
npx jest
# Run specific test file
npx jest path/to/file.test.ts
# Run tests matching a pattern
npx jest --testPathPattern="auth"
npx jest -t "should authenticate user"