test(models): complete merge precedence fixtures

This commit is contained in:
Gustavo Madeira Santana
2026-02-26 03:30:55 -05:00
parent b7841d8d16
commit 68cebc0e1a

View File

@@ -165,7 +165,17 @@ describe("models-config", () => {
baseUrl: "https://config.example/v1",
apiKey: "CONFIG_KEY",
api: "openai-responses",
models: [{ id: "config-model", name: "Config model", input: ["text"] }],
models: [
{
id: "config-model",
name: "Config model",
input: ["text"],
reasoning: false,
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
contextWindow: 8192,
maxTokens: 2048,
},
],
},
},
},
@@ -210,7 +220,17 @@ describe("models-config", () => {
baseUrl: "https://config.example/v1",
apiKey: "CONFIG_KEY",
api: "openai-responses",
models: [{ id: "config-model", name: "Config model", input: ["text"] }],
models: [
{
id: "config-model",
name: "Config model",
input: ["text"],
reasoning: false,
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
contextWindow: 8192,
maxTokens: 2048,
},
],
},
},
},