10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
globals: true,
|
||
|
|
include: ['tests/integration/**/*.test.ts'],
|
||
|
|
testTimeout: 600000,
|
||
|
|
},
|
||
|
|
});
|