react-impl-testing
Installation
SKILL.md
react-impl-testing
Quick Reference
Installation
npm install --save-dev vitest @testing-library/react @testing-library/dom \
@testing-library/jest-dom @testing-library/user-event jsdom
Vitest Configuration
// vitest.config.ts
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({
Related skills