スキル一覧に戻る
hotyanovicha

test-report

by hotyanovicha

0🍴 0📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: test-report description: Open and analyze Playwright HTML test reports. Use when user asks to see test results, check test report, view test output, or analyze test failures. allowed-tools: Bash(npx:), Bash(open:), Bash(xdg-open:*), Read, Grep, Glob

Test Report Viewer

Instructions

1. Open HTML Report

# Open Playwright HTML report
npx playwright show-report

The report will open in the default browser showing:

  • Test results summary
  • Failed test details
  • Screenshots and videos
  • Test traces

2. Analyze Report Files (if needed)

Check for report existence:

ls -la playwright-report/

Check recent test results:

# List recent test runs
ls -lt playwright-report/ | head -10

# Check for failures
grep -r "failed" playwright-report/ 2>/dev/null || echo "No failures found"

3. Provide Summary

If analyzing results, provide:

  • Total tests: passed/failed/skipped
  • Failed test names
  • Common failure patterns
  • Screenshots/traces available

4. Troubleshooting

If report doesn't exist:

# Run tests first
npx playwright test

# Then show report
npx playwright show-report

Alternative: Direct file access

# Open report HTML directly (macOS)
open playwright-report/index.html

# Linux
xdg-open playwright-report/index.html

Tips

  • The report includes interactive filtering by status, browser, file
  • Click on failed tests to see detailed error messages and traces
  • Screenshots are embedded for visual verification
  • Trace viewer allows step-by-step debugging

スコア

総合スコア

40/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

レビュー

💬

レビュー機能は近日公開予定です