Files
stack/apps/web/vitest.config.ts
Jason Woltje 3792576566
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
fix(web): add jsdom dependency and exclude e2e from vitest (#155)
Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
2026-03-15 20:00:53 +00:00

10 lines
185 B
TypeScript

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