test(gateway): remove stale config path binding

This commit is contained in:
Peter Steinberger
2026-05-02 17:05:42 +01:00
parent 20bb52e42c
commit 5a4efa77fd

View File

@@ -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(