pr-manual-testing
Installation
SKILL.md
PR Manual Testing
Format
Write scenarios inside a fenced code block with gherkin language tag.
Keywords: Feature, Background, Scenario, Given, When, Then, And
Feature-- name of the feature being testedBackground-- shared preconditions across all scenarios (optional, use when multiple scenarios share setup)Scenario-- one distinct user flow to verifyGiven-- initial state / preconditionsWhen-- user actionThen-- expected outcomeAnd-- continuation of the previous keyword
Use data tables (| col | col |) when verifying multiple inputs or list entries.