Files
stack/apps/web/vitest.config.ts
Jason Woltje fa717999d9
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
fix(web): add jsdom dependency and exclude e2e from vitest
- 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>
2026-03-15 15:00:34 -05:00

10 lines
185 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
exclude: ['e2e/**', 'node_modules/**'],
},
});