Files
moltbot/vitest.gateway.config.ts
2026-04-04 04:37:08 +01:00

13 lines
349 B
TypeScript

import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createGatewayVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(["src/gateway/**/*.test.ts"], {
dir: "src/gateway",
env,
name: "gateway",
pool: "forks",
});
}
export default createGatewayVitestConfig();