mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
16 lines
247 B
TypeScript
16 lines
247 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
watch: true,
|
|
testTimeout: 180_000,
|
|
hookTimeout: 120_000,
|
|
reporters: "default",
|
|
poolOptions: {
|
|
threads: {
|
|
singleThread: true,
|
|
},
|
|
},
|
|
},
|
|
});
|