testing
Installation
SKILL.md
Vitest + Testing Library
Running Tests
pnpm test # Run all
pnpm test:watch # Watch mode
pnpm test:coverage # With coverage
Basic Test
import { render, screen } from '@testing-library/react';
import { describe, expect, it } from 'vitest';
import { Button } from '@oakoss/ui';