.claude/skills/test-all/SKILL.md
Run all tests - unit tests in parallel, then acceptance tests with backend. Use when user wants to run the full test suite or mentions /test-all command.
npx skillsauth add rakovi4/continue-example test-allInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Runs the complete test suite: unit tests in parallel, then acceptance tests.
Read ProductSpecification/technology.md Conventions table for:
Discover backend adapter modules by listing directories under backend/adapters/.
Run ALL of these commands in parallel using multiple Bash tool calls in a single message:
{Backend test command} with module = usecase{Backend test command} per adapter module discovered{Frontend test command}Wait for all to complete. If any fail, report failures and STOP.
Use the Skill tool to invoke /run-backend:
Skill tool: skill="run-backend"
Wait for backend to start.
{Acceptance test command} for backend tests
Use the Skill tool to invoke /stop-backend:
Skill tool: skill="stop-backend"
Report summary:
testing
Run use-case module tests quickly. Use when user wants to run use-case tests or mentions /test-usecase command.
development
Generate BDD test specifications for story in 6 categories (API, UI, Load, Infrastructure, Security, Integration). Use when user wants to create test cases or mentions /test-spec command.
testing
Review tests to replace loose validation (contains, isNotNull, isNotEmpty) with strict validation (isEqualTo on parsed fields). Use when user wants to improve test assertions or mentions /test-review command.
development
Run frontend tests. Use when user wants to run frontend unit tests or mentions /test-frontend command.