← Back to list

e2e-tests
by jonathanhollander
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: e2e-tests description: 'Use this agent to create end-to-end tests using Playwright for
critical user workflows.
User: "Add E2E tests for the login flow"
Agent: Use e2e-tests to create Playwright tests
User: "Test the complete user journey"
Agent: Use e2e-tests to build workflow tests
'
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');
});
// e2e/documents.spec.ts
test('user can add document', async ({ page }) => {
await login(page);
await page.goto('/modules/documents');
await page.click('text=Add document');
await page.fill('[name=title]', 'Test Document');
await page.click('button[type=submit]');
await expect(page.locator('text=Test Document')).toBeVisible();
});
Success Criteria
- Playwright configured
- Critical flows tested
- Tests run in CI
- Screenshots on failure
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon