mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
fileParallelism: false,
|
|
include: ["tests/**/*.test.ts"],
|
|
globals: true,
|
|
testTimeout: 30_000,
|
|
},
|
|
});
|