.claude/skills/test-frontend/SKILL.md
Run frontend tests. Use when user wants to run frontend unit tests or mentions /test-frontend command.
npx skillsauth add rakovi4/continue-example test-frontendInstall 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.
Read ProductSpecification/technology.md Conventions table for the frontend test command.
All tests:
{Frontend test command}
With argument (test filter):
{Frontend test command} {argument}
skill="test-frontend" - run all frontend testsskill="test-frontend", args="registration.logic" - run registration logic testsskill="test-frontend", args="registration.api" - run registration API testsskill="test-frontend", args="login" - run all login-related testsReport the test results from output.
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 tests with coverage and report uncovered lines/branches per class. Use when user wants to check test coverage, find untested code, identify coverage gaps, or mentions /test-coverage command. Also use after green phases to verify new code is well-covered.