Files
openclaw/vitest.gateway.config.ts
2026-04-08 05:57:51 +01:00

13 lines
376 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,
exclude: ["src/gateway/gateway.test.ts"],
name: "gateway",
});
}
export default createGatewayVitestConfig();