mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 09:01:17 +00:00
* Restore foundry onboarding stack * Consolidate foundry rename * Create foundry tasks without prompts * Rename Foundry handoffs to tasks
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"],
|
|
},
|
|
});
|