with one click
testing
Unified testing commands and patterns across frontend and backend.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Unified testing commands and patterns across frontend and backend.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Standardized patterns for Git branching, worktrees, and lifecycle management.
Expertise in mobile responsiveness, specifically table patterns and standard UI component styling.
Resolves React hook violations (rules of hooks, useEffect dependencies, hook ordering).
Security & Authentication Specialist - Expert in JWT, cookie-based auth, MFA, and generic security patterns
Systematic multi-perspective code review with consistent quality gates.
Systematic debugging with structured reproduction and root cause analysis.
| name | testing |
| description | Unified testing commands and patterns across frontend and backend. |
| last_updated | "2025-12-20T00:00:00.000Z" |
Guidance and templates for testing in {PROJECT_NAME}. Covers React Component testing (Vitest/RTL) and Backend testing (Python/Pytest).
# Log usage when using this skill
./scripts/log-skill.sh "testing" "manual" "$$"
workflows/run-frontend-tests.mdworkflows/run-backend-tests.mdtemplates/component-test.template.tsxreferences/vitest-patterns.md# Frontend (Unit/Integration)
npm test
npm test -- -t "ComponentName" # Run specific test
# Backend (API)
pytest
pytest -k "test_name"