diff --git a/vite.config.js b/vite.config.js index 1085d4f..4c9b110 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,5 +1,5 @@ -import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react' +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; // https://vitejs.dev/config/ export default defineConfig({ @@ -8,5 +8,6 @@ export default defineConfig({ environment: 'jsdom', globals: true, setupFiles: './src/__tests__/setup.jsx', - } -}) \ No newline at end of file + testTimeout: 15000, // Set global test timeout to 15 seconds + }, +});