Files
dc-recorder/vitest.config.ts

12 lines
223 B
TypeScript
Raw Normal View History

2026-05-13 15:28:25 +07:00
import { defineConfig } from "vitest/config";
2026-05-14 20:03:02 +07:00
import { config } from "dotenv";
config({ path: ".env.test" });
2026-05-13 15:20:43 +07:00
export default defineConfig({
test: {
2026-05-13 15:28:25 +07:00
environment: "node",
include: ["tests/**/*.test.ts"],
},
2026-05-13 15:20:43 +07:00
});