mirror of
https://github.com/zitadel/zitadel.git
synced 2026-08-19 01:14:48 -05:00
15 lines
457 B
TypeScript
15 lines
457 B
TypeScript
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
plugins: [tsconfigPaths()],
|
|
test: {
|
|
include: ["dockerized/**/*.test.ts"],
|
|
// Increased timeouts are intentional: Docker image build and container startup
|
|
// can be slow in CI and local environments, so we allow up to 3 minutes.
|
|
testTimeout: 180000,
|
|
hookTimeout: 180000,
|
|
fileParallelism: false,
|
|
},
|
|
});
|