testing-e2e
Installation
SKILL.md
Skill: Testing E2E
Goal
Write end-to-end tests that verify complete user workflows and critical system paths across the full stack.
Use This Skill When
- Testing complete user journeys (login → checkout, etc.)
- Testing critical paths that must always work
- Verifying UI interactions with real browser
- Testing payment flows, authentication flows
- The user asks for "E2E tests" or "browser tests"
Do Not Use This Skill When
- Testing individual functions (use unit tests)
- Testing component interactions (use integration tests)
- Quick feedback needed (E2E tests are slow)
- Testing implementation details