fix(web): add jsdom dependency and exclude e2e from vitest (#155)

Co-authored-by: Jason Woltje <[email protected]>
Co-committed-by: Jason Woltje <[email protected]>
This commit is contained in:
2026-03-15 20:00:53 +00:00
committed by jason.woltje
parent cd57c75e41
commit 3792576566
3 changed files with 338 additions and 25 deletions
+1
View File
@@ -27,6 +27,7 @@
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jsdom": "^29.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.0",
"vitest": "^2.0.0"
+1
View File
@@ -4,5 +4,6 @@ export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
exclude: ['e2e/**', 'node_modules/**'],
},
});