Files
touchbase/vitest.config.ts

19 lines
449 B
TypeScript
Raw Permalink Normal View History

2026-05-01 18:24:09 -04:00
import { defineConfig } from "vitest/config";
import path from "node:path";
export default defineConfig({
test: {
environment: "node",
setupFiles: ["./test/setup.ts"],
env: { NODE_ENV: "test" },
globals: false,
include: ["test/**/*.test.ts", "src/**/*.test.ts"],
pool: "forks",
fileParallelism: false,
sequence: { concurrent: false },
},
resolve: {
alias: { "@": path.resolve(__dirname, "src") },
},
});