mirror of
https://github.com/Narcooo/inkos.git
synced 2026-08-29 07:14:24 +08:00
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["src/__tests__/**/*.test.ts"],
|
|
// Some pipeline-runner tests can approach Vitest's default 5s timeout
|
|
// under full parallel runs; keep this high enough to avoid false kills.
|
|
testTimeout: 30_000,
|
|
},
|
|
});
|