Files
elegalsoftware/apps/api/vitest.config.ts
T

12 lines
327 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
// Unit tests only — no DB, no network, no server bootstrap.
include: ['test/**/*.test.ts'],
environment: 'node',
// Fail fast if a test accidentally reaches for the network/DB by hanging.
testTimeout: 15000,
},
});