typescript-testing
Installation
SKILL.md
TypeScript Testing
Quick reference for writing effective TypeScript tests with Vitest. Each section summarizes the key rules — reference files provide full examples and edge cases.
Vitest Configuration
This project uses Vitest 4 with jsdom for React component tests and v8 for coverage.
Key Settings
import { defineConfig } from "vitest/config";
Related skills