← スキル一覧に戻る

playwright-e2e
by TrevorS
⭐ 0🍴 0📅 2025年12月13日
SKILL.md
name: playwright-e2e description: Visual E2E testing workflow for frontend UI changes. Use after modifying Svelte components, layouts, or styles to verify the UI renders correctly. allowed-tools: Bash, Read, Glob
Playwright E2E Testing
Visual testing workflow for the Strieber chat UI frontend.
When to Use
After making changes to:
- Svelte components (
frontend/src/**/*.svelte) - CSS/styles (
frontend/src/app.css, Tailwind classes) - Layout structure
- Any visible UI element
Run Tests
docker compose run --rm playwright-test
This builds the production bundle and runs Playwright tests in headless Chromium.
View Screenshots
After tests complete, read the screenshots:
frontend/test-results/screenshots/layout-desktop.png # 1280x720 desktop view
frontend/test-results/screenshots/layout-mobile.png # 375x667 mobile view
Use the Read tool on these PNG files to visually verify the UI.
Verification Checklist
- Layout renders correctly (sidebar, main area)
- Colors/theme applied properly
- Responsive behavior works (mobile hides sidebar)
- No visual regressions from previous state
- Text is readable and properly positioned
Adding New Tests
Create tests in frontend/e2e/<feature>.spec.ts:
import { test, expect } from '@playwright/test';
test('my feature test', async ({ page }) => {
await page.goto('/');
// Take screenshot for visual verification
await page.screenshot({
path: 'test-results/screenshots/my-feature.png',
fullPage: true
});
// Add assertions
await expect(page.locator('.my-element')).toBeVisible();
});
Test Locations
- Config:
frontend/playwright.config.ts - Tests:
frontend/e2e/*.spec.ts - Results:
frontend/test-results/(gitignored)
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です