From 1f215848be47257fa912950287b3b151e6143aa0 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 8 Jan 2026 23:18:27 +0100 Subject: [PATCH] chore(test): align auth choice options formatting --- src/commands/auth-choice-options.test.ts | 5 ++++- src/commands/configure.ts | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/commands/auth-choice-options.test.ts b/src/commands/auth-choice-options.test.ts index 492eefd3b..e0e95cbe7 100644 --- a/src/commands/auth-choice-options.test.ts +++ b/src/commands/auth-choice-options.test.ts @@ -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", () => { diff --git a/src/commands/configure.ts b/src/commands/configure.ts index 7a8255471..eab3a7934 100644 --- a/src/commands/configure.ts +++ b/src/commands/configure.ts @@ -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, }),