487902421b
* 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
18 lines
345 B
TypeScript
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,
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
);
|