12 lines
327 B
TypeScript
12 lines
327 B
TypeScript
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,
|
||
|
|
},
|
||
|
|
});
|