en un clic
Unified testing commands and patterns across frontend and backend.
npx skills add https://github.com/hollandkevint/thinkhaven --skill testingCopiez et collez cette commande dans Claude Code pour installer le skill
Unified testing commands and patterns across frontend and backend.
npx skills add https://github.com/hollandkevint/thinkhaven --skill testingCopiez et collez cette commande dans Claude Code pour installer le skill
| 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 thinkhavenn. 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"