blob: 73e0e1b91560714843840ef29438d952989c5580 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/// <reference types="vitest" />
import tsconfigPaths from "vite-tsconfig-paths";
import { defineConfig } from "vitest/config";
export default defineConfig({
plugins: [tsconfigPaths()],
test: {
globalSetup: ["./src/tests/setup/startContainers.ts"],
teardownTimeout: 30000,
include: ["src/tests/**/*.test.ts"],
testTimeout: 60000,
},
});
|