using-tests
Installation
SKILL.md
Working with Tests
Testing strategy and workflow. Tests run in parallel with isolated data per suite. Prioritize Playwright for UI, integration tests for APIs, unit tests for logic.
Testing Strategy
Follow this hierarchy when deciding what kind of test to write:
- Playwright tests (browser) - Preferred for most features
- Integration tests (API) - When Playwright is not practical
- Unit tests (pure functions) - Only for complex isolated logic
When to Use Each Test Type
Playwright Tests (Default Choice)
Write Playwright tests when the feature involves: