Add frontend unit tests

- 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>
This commit is contained in:
Devin AI
2025-01-16 19:24:51 +00:00
parent 98e6f0e5ec
commit ce7f65b5be
9 changed files with 165 additions and 4 deletions

20
client/vitest.config.ts Normal file
View File

@@ -0,0 +1,20 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
globals: true,
setupFiles: ['./test/setupTests.ts'],
typecheck: {
tsconfig: './tsconfig.test.json'
}
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})