// Project-specific test execution commands. Customize for your project.
| name | run-tests |
| description | Project-specific test execution commands. Customize for your project. |
| allowed-tools | Bash |
CUSTOMIZE THIS FILE FOR YOUR PROJECT.
# TypeScript/JavaScript (bun)
bun test
bun test path/to/test.ts
# Python (uv)
uv run pytest
uv run pytest tests/test_specific.py -v
# Run all tests
bun test
# Run specific test file
bun test src/components/Button.test.ts
# Run tests matching pattern
bun test --grep "should handle"
# Run with coverage
bun test --coverage
# Run all tests
uv run pytest
# Run specific test file
uv run pytest tests/test_api.py
# Run with verbose output
uv run pytest -v
# Run with coverage
uv run pytest --cov=src
Tests should exit with:
When implementing, follow this pattern:
1. Write code
2. Write tests for the code
3. Run: bun test (or uv run pytest)
4. If tests fail → fix code
5. If tests pass → continue