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:

  1. Playwright tests (browser) - Preferred for most features
  2. Integration tests (API) - When Playwright is not practical
  3. 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:

Related skills
Installs
81
GitHub Stars
15
First Seen
Jan 20, 2026