Skip to main content

playwright-e2e

writing, running, and debugging Playwright tests. working with their output from github actions

インストールへ移動

ソース情報

リポジトリ
forcedotcom/apex-language-support
ソースの最終更新活動
2026年6月23日 22:16
検出された SKILL.md の言語
英語
スター
11
フォーク
3

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
4 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
playwright-e2e
description
writing, running, and debugging Playwright tests. working with their output from github actions
# Playwright E2E Tests Guidelines for writing and iterating on Playwright tests for VS Code extensions. ## Required Reading **Read ALL before responding:** - `references/coding-playwright-tests.md` - Writing tests - `references/iterating-playwright-tests.md` - Iterating on tests (lines 34-37: "Things to ignore") - `references/analyze-e2e.md` - Analyzing E2E test results from CI # Use shared utilities Shared code (helpers, locators, configuration) for tests lives in `e2e-tests/shared/`. ## Span files (when debugging traces) Available local + CI/GHA. - Output: `~/.sf/vscode-spans/` — `web-*.jsonl` (test:e2e:web), `node-*.jsonl` (test:e2e:desktop) - Auto-enabled (no manual enable needed) - CI runs: copied into `test-results/spans/` artifacts (see workflow upload/download in `references/analyze-e2e.md`) - Latest: `ls -lt ~/.sf/vscode-spans/` - Clear before run for fresh output: `rm -rf ~/.sf/vscode-spans/` - Format: JSONL; parse each line with `JSON.parse` - Fields: `name`, `traceId`, `spanId`, `parentSpanId`, `durationMs`, `status`, `startTime`, `attributes` See `.claude/skills/span-file-export/SKILL.md` for enable/OTLP vs file. ## Running tests (AI behavior) When running Playwright tests (`npm run test:e2e:web`, `npm run test:e2e:desktop`, etc.), never block >30s. Use `run_in_background: true` so tests run while the AI continues. Check terminal output or the output file later. ## References - https://playwright.dev/docs - Playwright docs
GitHubで見る