mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 19:40:42 +00:00
Fixes gateway fallback request context cleanup on close/startup failure and shards the full gateway Vitest lane to avoid the observed memory hang.\n\nValidation:\n- Testbox: OPENCLAW_TESTBOX=1 pnpm check:changed\n- Testbox: env OPENCLAW_VITEST_MAX_WORKERS=1 /usr/bin/time -v pnpm test:gateway (254 files, 2950 tests, max RSS 4144692 KB)
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
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 === "1"
|
|
? createGatewayProjectShardVitestConfig()
|
|
: createGatewayVitestConfig();
|