From 5a4efa77fd8f3a7643fd93a1bf039a0fa9aee84e Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 17:05:42 +0100 Subject: [PATCH] test(gateway): remove stale config path binding --- src/gateway/gateway.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gateway/gateway.test.ts b/src/gateway/gateway.test.ts index a15aa511618..47e6536bb1e 100644 --- a/src/gateway/gateway.test.ts +++ b/src/gateway/gateway.test.ts @@ -19,7 +19,6 @@ import { import { installOpenAiResponsesMock } from "./test-helpers.openai-mock.js"; import { buildMockOpenAiResponsesProvider } from "./test-openai-responses-model.js"; -let resolveConfigPath: typeof import("../config/config.js").resolveConfigPath; let createConfigIO: typeof import("../config/config.js").createConfigIO; const GATEWAY_E2E_TIMEOUT_MS = 90_000; let gatewayTestSeq = 0; @@ -137,7 +136,7 @@ describe("gateway e2e", () => { }); beforeAll(async () => { - ({ createConfigIO, resolveConfigPath } = await import("../config/config.js")); + ({ createConfigIO } = await import("../config/config.js")); }); it(