blob: d8c1cec1c7093429239a44dcf04a80ae130d34db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/// <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"],
},
});
|