testing-e2e
Installation
SKILL.md
End-to-End Testing
Full E2E test suites, API testing, load testing, and report generation.
Run Playwright E2E suite
# Run full E2E suite
npx playwright test --config=playwright.config.ts
# Run E2E tests with retries
npx playwright test --retries=2
# Run E2E in CI mode (all browsers, parallel)
npx playwright test --reporter=html --workers=4
# Run tagged E2E tests
npx playwright test --grep="@smoke"
npx playwright test --grep="@critical"