Files
openclaw/test/vitest/vitest.gateway.config.ts
2026-06-04 20:40:11 -04:00

32 lines
1.1 KiB
TypeScript

// Vitest gateway config wires the gateway test shard.
import { createProjectShardVitestConfig } from "./vitest.project-shard-config.ts";
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
const gatewayProjectConfigs = [
"test/vitest/vitest.gateway-core.config.ts",
"test/vitest/vitest.gateway-client.config.ts",
"test/vitest/vitest.gateway-methods.config.ts",
"test/vitest/vitest.gateway-server.config.ts",
] as const;
export function createGatewayVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(["src/gateway/**/*.test.ts"], {
dir: "src/gateway",
env,
exclude: [
"src/gateway/gateway.test.ts",
"src/gateway/server.startup-matrix-migration.integration.test.ts",
"src/gateway/sessions-history-http.test.ts",
],
name: "gateway",
});
}
export function createGatewayProjectShardVitestConfig() {
return createProjectShardVitestConfig(gatewayProjectConfigs);
}
export default process.env.OPENCLAW_GATEWAY_PROJECT_SHARDS === "0"
? createGatewayVitestConfig()
: createGatewayProjectShardVitestConfig();