This commit is contained in:
KS Jannette
2026-02-12 07:28:55 -05:00
parent 48fef7d077
commit 0800f90ff5
8 changed files with 4763 additions and 3385 deletions

11
frontend/vitest.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
setupFiles: './src/tests/setup.ts',
globals: true,
},
});