creating-test-structure
Installation
SKILL.md
Creating Test Structure
Build the test skeleton first, then implementation.
This skill converts a markdown test plan into test scaffolding by either:
- creating a new spec file, or
- inserting new suites/tests/hooks into an existing spec file.
It produces:
- real
describe/it/ hook blocks - readable test names
- pseudo-code comments for every setup, action, and assertion
When to Use
- You have a test plan and need a fast, consistent scaffold.
- You need to append new test sections to an existing spec.
- You want to separate structure decisions from implementation details.
- You want a handoff file for
writing-webdriverio-code.