From 0dcb6f0821f78fd1e80192c85281d32b1a71e446 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Mon, 1 Jun 2026 01:01:38 +0200 Subject: [PATCH] chore(set-up-vitest): Add testing configuration --- vite.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vite.config.js b/vite.config.js index b3460e2..68cd9a4 100644 --- a/vite.config.js +++ b/vite.config.js @@ -31,5 +31,9 @@ export default defineConfig({ alias: { '@': path.resolve(__dirname, './src') } + }, + test: { + globals: false, + environment: 'jsdom' } })