create-acceptance-test
Installation
SKILL.md
Create Acceptance Test
Generate a ticket-driven acceptance test that validates specific acceptance criteria.
Workflow
- Parse the ticket key and description from the user's request (e.g.,
PROJ-456 bulk export) - Check if a POM exists for the page under test in
e2e/poms/- If yes, read it and add any new methods needed for this ticket's acceptance criteria
- If no, create one first using the
create-pomskill
- Check if test data exists — create or update as needed
- Create the spec file in
e2e/tests/acceptance/ - Run the test to verify it passes:
npx playwright test --project="chromium:acceptance" {TICKET}-{description}.spec.ts
Related skills