9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["tests/**/*.test.ts"],
|
|
testTimeout: 60000, // 60 second timeout for integration tests
|
|
hookTimeout: 60000,
|
|
},
|
|
});
|