E2E Testing (Frontend)

Installation
SKILL.md

E2E Testing (Frontend)

Note: E2E test coverage is currently limited. This is an area for improvement.

Running Tests

npx playwright install  # First time only
npm run test:e2e

Page Object Model

Create page objects for reusable page interactions:

// e2e/pages/login-page.ts
import { type Page, type Locator, expect } from '@playwright/test';
Installs
Repository
smithery/ai
First Seen
E2E Testing (Frontend) — smithery/ai