18 lines
460 B
TypeScript
18 lines
460 B
TypeScript
import { fileURLToPath } from "node:url";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
|
},
|
|
},
|
|
test: {
|
|
environment: "node",
|
|
globalSetup: ["./tests/setup/globalSetup.ts"],
|
|
include: ["benchmarks/remediationBenchmark.test.ts"],
|
|
fileParallelism: false,
|
|
disableConsoleIntercept: true,
|
|
testTimeout: 120_000,
|
|
},
|
|
});
|