Files
FarmaFinder/frontend/vitest.config.js
Ichitux 93ec8e6a6c
All checks were successful
Run Tests / test-backend (push) Successful in 40s
Run Tests / test-frontend (push) Successful in 37s
Enable test cases for both apps
2026-04-01 01:58:43 +02:00

12 lines
241 B
JavaScript

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