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