Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1
forks:1
updated:February 13, 2026 at 10:34
File Explorer
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | mern-e2e |
| description | Manage Playwright E2E tests for critical user journeys. |
| argument-hint | [--add <journey>] [--run] [--report] [--fix] |
| allowed-tools | Bash, Write, Read, Glob, Grep |
Create, run, and maintain E2E tests for critical user flows using Playwright.
--add <journey> ā Create new journey test (e.g., signup-flow, checkout)--run ā Run all E2E tests--run <pattern> ā Run tests matching pattern--report ā Generate and display HTML report--fix ā Fix flaky tests with approvalapps/web/e2e/
āāā journeys/ # User journey tests
ā āāā auth.spec.ts # Sign up, sign in, sign out
ā āāā onboarding.spec.ts # First-time user flow
ā āāā <feature>.spec.ts # Feature-specific journeys
āāā fixtures/ # Test fixtures and helpers
ā āāā auth.ts # Auth helpers (login as user)
ā āāā db.ts # Database seeding
āāā pages/ # Page Object Models
ā āāā HomePage.ts
ā āāā SettingsPage.ts
āāā playwright.config.ts # Playwright configuration
auth ā Authentication flows (signup, signin, signout, password reset)onboarding ā First-time user experience<feature>-crud ā Create, read, update, delete for a feature<feature>-workflow ā Multi-step workflowscheckout ā Payment/purchase flowssettings ā User settings and preferences# Run all E2E tests
pnpm test:e2e
# Run specific journey
pnpm test:e2e --grep "auth"
# Run in headed mode (watch)
pnpm test:e2e --headed
# Run with UI mode
pnpm test:e2e --ui
# Generate report
pnpm test:e2e --reporter=html && npx playwright show-report
--add)e2e/journeys/<journey>.spec.ts--run)--fix)page.waitForTimeout)For Playwright setup and patterns, see reference/mern-e2e-reference.md