12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ['apps/**/*.spec.ts', 'packages/**/*.spec.ts', 'tests/**/*.spec.ts'],
|
|
environment: 'node',
|
|
hookTimeout: 60000,
|
|
testTimeout: 10000
|
|
}
|
|
});
|