refactor(test): share auth profile order fixtures

This commit is contained in:
Peter Steinberger
2026-02-15 21:27:07 +00:00
parent a02e5759cc
commit 5958454710
5 changed files with 38 additions and 94 deletions

View File

@@ -0,0 +1,26 @@
import type { AuthProfileStore } from "./auth-profiles.js";
export const ANTHROPIC_STORE: AuthProfileStore = {
version: 1,
profiles: {
"anthropic:default": {
type: "api_key",
provider: "anthropic",
key: "sk-default",
},
"anthropic:work": {
type: "api_key",
provider: "anthropic",
key: "sk-work",
},
},
};
export const ANTHROPIC_CFG = {
auth: {
profiles: {
"anthropic:default": { provider: "anthropic", mode: "api_key" },
"anthropic:work": { provider: "anthropic", mode: "api_key" },
},
},
};