mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 04:03:31 +00:00
* Add lefthook formatter checks * Fix SDK mode hydration * Stabilize SDK mode integration test
10 lines
211 B
TypeScript
10 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"],
|
|
},
|
|
});
|