mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
// Kept separate from vite.config.ts so the app build config stays untouched;
|
|
// utility tests run in a plain node environment (no jsdom needed).
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['src/**/*.test.{ts,tsx}'],
|
|
environment: 'node',
|
|
},
|
|
});
|