Testing

Unified testing commands and patterns across frontend and backend.

hollandkevint 5ac57d3 3 files · 2.9 KB Updated

File contents

Testing Skill

Overview

Guidance and templates for testing in thinkhavenn. Covers React Component testing (Vitest/RTL) and Backend testing (Python/Pytest).

When To Use

  • Writing new code: Every new feature needs tests.
  • Fixing bugs: Create a reproduction test first.
  • Refactoring: Ensure green tests before and after.

Instrumentation

# Log usage when using this skill
./scripts/log-skill.sh "testing" "manual" "$$"

What do you want to do?

  1. Test React Componentsworkflows/run-frontend-tests.md
  2. Test Backend/APIworkflows/run-backend-tests.md
  3. Write a New Testtemplates/component-test.template.tsx
  4. Fix Test Failuresreferences/vitest-patterns.md

Quick Commands

# Frontend (Unit/Integration)
npm test
npm test -- -t "ComponentName"  # Run specific test

# Backend (API)
pytest
pytest -k "test_name"

hollandkevint/thinkhaven/tree/main/skills/testing commit 5ac57d3b70

Frequently asked questions

npx skillmds@latest add hollandkevint/testing