- Set up Vitest with React Testing Library - Add comprehensive tests for Button and ListPane components - Configure TypeScript for test environment - Add test type declarations Co-Authored-By: ashwin@anthropic.com <ashwin@anthropic.com>
7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
/// <reference types="vitest/globals" />
|
|
/// <reference types="@testing-library/jest-dom" />
|
|
import '@testing-library/jest-dom/vitest'
|
|
|
|
// Add any additional test setup, custom matchers, or global mocks here
|
|
// This file runs before each test file
|