Claude Code Plugins

Community-maintained marketplace

Feedback

Unified testing commands and patterns across frontend and backend.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name testing
description Unified testing commands and patterns across frontend and backend.
last_updated Sat Dec 20 2025 00:00:00 GMT+0000 (Coordinated Universal Time)

Testing Skill

Overview

Guidance and templates for testing in {PROJECT_NAME}. 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"