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
13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
import { defineConfig, mergeConfig } from "vitest/config";
|
|
import baseConfig from "./vitest.config";
|
|
|
|
export default mergeConfig(
|
|
baseConfig,
|
|
defineConfig({
|
|
test: {
|
|
include: ["src/**/*.test.{ts,tsx}", "src/**/*.spec.{ts,tsx}"],
|
|
exclude: ["src/**/*.integration.test.{ts,tsx}"],
|
|
},
|
|
}),
|
|
);
|