Files
GibSend/apps/web/vitest.integration.config.ts
T
KM Koushik 487902421b feat: add web testing foundation with infra-backed suites (#349)
* feat: add web test framework with infra-backed suites

* fix: honor DATABASE_URL env in integration prepare script

* fix: apply web test review feedback

* fix: streamline web test infra lifecycle and workflow scope
2026-02-16 09:13:29 +11:00

18 lines
345 B
TypeScript

import { defineConfig, mergeConfig } from "vitest/config";
import baseConfig from "./vitest.config";
export default mergeConfig(
baseConfig,
defineConfig({
test: {
include: ["src/**/*.integration.test.ts"],
pool: "forks",
poolOptions: {
forks: {
singleFork: true,
},
},
},
}),
);