Remove legacy orchestration and MCP aliases; reroute recursive pipeline API
This commit is contained in:
@@ -37,7 +37,6 @@ test("prefers CLAUDE_CODE_OAUTH_TOKEN over ANTHROPIC_API_KEY", () => {
|
||||
|
||||
assert.equal(config.provider.anthropicOauthToken, "oauth-token");
|
||||
assert.equal(config.provider.anthropicApiKey, "api-key");
|
||||
assert.equal(config.provider.anthropicToken, "oauth-token");
|
||||
assert.equal(resolveAnthropicToken(config.provider), "oauth-token");
|
||||
|
||||
const authEnv = buildClaudeAuthEnv(config.provider);
|
||||
@@ -52,7 +51,6 @@ test("falls back to ANTHROPIC_API_KEY when oauth token is absent", () => {
|
||||
|
||||
assert.equal(config.provider.anthropicOauthToken, undefined);
|
||||
assert.equal(config.provider.anthropicApiKey, "api-key");
|
||||
assert.equal(config.provider.anthropicToken, "api-key");
|
||||
assert.equal(resolveAnthropicToken(config.provider), "api-key");
|
||||
|
||||
const authEnv = buildClaudeAuthEnv(config.provider);
|
||||
|
||||
Reference in New Issue
Block a user