Files
dance-lessons-coach/.vibe/skills/bdd_testing/assets/feature-template.feature
Gabriel Radureau e9f3b63406 feat: add commit_message and bdd_testing skills
- Create commit_message skill with Gitmoji validation and templates
- Update bdd_testing skill to match validated BDD implementation
- Add comprehensive documentation and validation scripts
- Ensure all skills follow AGENTS.md conventions

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
2026-04-04 19:05:22 +02:00

13 lines
393 B
Gherkin

# features/<feature_name>.feature
Feature: <Feature Name>
<Feature description>
Scenario: <Scenario name>
Given the server is running
When I request <endpoint>
Then the response should be "{\"key\":\"value\"}"
Scenario: <Another scenario>
Given the server is running
When I request <endpoint> with "<parameter>"
Then the response should be "{\"key\":\"value\"}"