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에서 보기