chore(test): align auth choice options formatting

This commit is contained in:
Peter Steinberger
2026-01-08 23:18:27 +01:00
parent dc1992cbb5
commit 1f215848be
2 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,9 @@
import { describe, expect, it } from "vitest";
import { CLAUDE_CLI_PROFILE_ID, type AuthProfileStore } from "../agents/auth-profiles.js";
import {
type AuthProfileStore,
CLAUDE_CLI_PROFILE_ID,
} from "../agents/auth-profiles.js";
import { buildAuthChoiceOptions } from "./auth-choice-options.js";
describe("buildAuthChoiceOptions", () => {

View File

@@ -286,7 +286,9 @@ async function promptAuthConfig(
await select({
message: "Model/auth choice",
options: buildAuthChoiceOptions({
store: ensureAuthProfileStore(undefined, { allowKeychainPrompt: false }),
store: ensureAuthProfileStore(undefined, {
allowKeychainPrompt: false,
}),
includeSkip: true,
includeClaudeCliIfMissing: true,
}),