chore(03-01): configure Vitest jsdom environment

- Add test block to vite.config.ts with environment: 'jsdom'
- Add passWithNoTests: true (established project convention)
This commit is contained in:
2026-03-27 09:25:08 +01:00
parent ace078d418
commit 9eef93775c
+4
View File
@@ -4,4 +4,8 @@ import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [react(), tailwindcss()],
test: {
environment: 'jsdom',
passWithNoTests: true,
},
});