From 965ca365a113dc9c7f1f4f76a51fe31ac081d84f Mon Sep 17 00:00:00 2001 From: vrotondo <150374510+vrotondo@users.noreply.github.com> Date: Tue, 15 Apr 2025 21:18:27 -0400 Subject: [PATCH] Update vite.config.js --- vite.config.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 + }, +});