원클릭으로
e2e-implementer
Create and run E2E tests using Playwright in the `apps/e2e` module.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create and run E2E tests using Playwright in the `apps/e2e` module.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement and run tests adhering to valid architecture and best practices.
Implement and run tests adhering to valid architecture and best practices.
Bump the version of any apps/* module following semver, including syncing dependency references and secondary version files.
Use this skill to implement new scrappers using the Scrapling framework (https://github.com/D4Vinci/Scrapling).
Implement and run tests adhering to valid architecture and best practices.
Create and run E2E tests using Playwright in the `apps/e2e` module.
| name | e2e-implementer |
| description | Create and run E2E tests using Playwright in the `apps/e2e` module. |
Use this skill when implementing or modifying End-to-End (E2E) tests. These tests are distinct from unit/integration tests and are housed in a dedicated module.
apps/e2e.specs/: Contains test files (*.spec.ts).pages/: Page Object Models (POM).utils/: Helper functions..spec.ts (Playwright standard).Page.ts (e.g., LoginPage.ts).id attributes in the source code. Avoid using text-based locators or CSS classes unless absolutely necessary.scripts/run_e2e_tests.py script which handles isolation.apps/e2e does not import internal implementations from other apps directly (unless it's a shared type/constant). It should interact via the browser.python scripts/run_e2e_tests.py from the root. This will:
npm test inside apps/e2e (WARNING: Configured against local dev environment by default).