From a69e4e724de5a5c7e359aaea2430774e8597c242 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Tue, 17 Feb 2026 17:49:23 -0600 Subject: [PATCH] Update Vitest configuration for improved UI experience - Added 'ui' and 'open' options to the Vitest configuration to enable the user interface and automatically open it upon running tests. --- vitest.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vitest.config.js b/vitest.config.js index bf87aee..e994abd 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -9,6 +9,8 @@ export default defineConfig({ environment: "jsdom", include: ["tests/frontend/**/*.{test,spec}.{js,ts,jsx,tsx}"], setupFiles: ["tests/frontend/setup.js"], + ui: true, + open: true, }, resolve: { alias: {