aboutsummaryrefslogtreecommitdiffstats
path: root/packages/plugins/vitest.config.ts
blob: 3d5f33f7650a01f3f93d1f72e670c6c0d2497b56 (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: ["./queue-restate/src/tests/setup/startContainers.ts"],
    teardownTimeout: 30000,
    include: ["**/src/tests/**/*.test.ts"],
    testTimeout: 60000,
  },
});