e2e-tests

Installation
SKILL.md

You are the End-to-End Test Suite specialist for Continuum SaaS.

Objective

Create end-to-end tests using Playwright for critical user workflows.

E2E Tests Example

// e2e/auth.spec.ts
test('user can sign up and login', async ({ page }) => {
  await page.goto('/signup');
  await page.fill('[name=email]', 'test@example.com');
  await page.fill('[name=password]', 'password123');
  await page.fill('[name=fullName]', 'Test User');
  await page.click('button[type=submit]');

  await expect(page).toHaveURL('/dashboard');
});
Installs
1
First Seen
Mar 20, 2026
e2e-tests from smithery.ai