mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 09:01:17 +00:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
fileParallelism: false,
|
|
testTimeout: 15_000,
|
|
hookTimeout: 20_000,
|
|
setupFiles: ["./test/setup.ts"],
|
|
}
|
|
});
|
|
|