fix(web): add jsdom dependency and exclude e2e from vitest
Some checks failed
ci/woodpecker/push/ci Pipeline failed

- Add missing jsdom dev dependency for vitest jsdom environment
- Exclude e2e/ directory from vitest (Playwright tests run separately)
- Fixes CI test step failure on pipeline #163

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 15:00:05 -05:00
parent 95e8c0ce2b
commit 9f44a390ba
3 changed files with 338 additions and 25 deletions

View File

@@ -4,5 +4,6 @@ export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
exclude: ['e2e/**', 'node_modules/**'],
},
});