mirror of
https://github.com/jakejarvis/rdapper.git
synced 2025-10-18 14:24:29 -04:00
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
include: ["src/**/*.test.ts"],
|
|
exclude: ["dist/**", "node_modules/**"],
|
|
sequence: { hooks: "list" },
|
|
globals: true,
|
|
testTimeout: process.env.SMOKE === "1" ? 30000 : 5000,
|
|
},
|
|
});
|