diff --git a/src/commands/onboard-non-interactive/local/auth-choice-inference.test.ts b/src/commands/onboard-non-interactive/local/auth-choice-inference.test.ts index 42adf8fb0fae..e4234b66dc7d 100644 --- a/src/commands/onboard-non-interactive/local/auth-choice-inference.test.ts +++ b/src/commands/onboard-non-interactive/local/auth-choice-inference.test.ts @@ -1,3 +1,4 @@ +// Non-interactive auth-choice inference tests cover core and plugin-defined CLI auth flags. import { beforeEach, describe, expect, it, vi } from "vitest"; import type { OnboardOptions } from "../../onboard-types.js"; import { inferAuthChoiceFromFlags } from "./auth-choice-inference.js"; diff --git a/src/commands/onboard-non-interactive/local/auth-choice.plugin-providers.test.ts b/src/commands/onboard-non-interactive/local/auth-choice.plugin-providers.test.ts index 40b1a9107564..cbb54620a749 100644 --- a/src/commands/onboard-non-interactive/local/auth-choice.plugin-providers.test.ts +++ b/src/commands/onboard-non-interactive/local/auth-choice.plugin-providers.test.ts @@ -1,3 +1,4 @@ +// Non-interactive plugin provider auth tests cover provider choice setup and runtime plugin install requirements. import { beforeEach, describe, expect, it, vi } from "vitest"; import type { OpenClawConfig } from "../../../config/config.js"; import type { CodexRuntimePluginInstallResult } from "../../codex-runtime-plugin-install.js"; diff --git a/src/commands/onboard-non-interactive/local/auth-choice.test.ts b/src/commands/onboard-non-interactive/local/auth-choice.test.ts index 62b34d2ee820..e4246049e243 100644 --- a/src/commands/onboard-non-interactive/local/auth-choice.test.ts +++ b/src/commands/onboard-non-interactive/local/auth-choice.test.ts @@ -1,3 +1,4 @@ +// Non-interactive auth-choice tests cover built-in, custom, deprecated, and plugin provider dispatch. import { beforeEach, describe, expect, it, vi } from "vitest"; import type { OpenClawConfig } from "../../../config/config.js"; import { resolveAgentModelPrimaryValue } from "../../../config/model-input.js"; diff --git a/src/commands/onboard-non-interactive/local/daemon-install.test.ts b/src/commands/onboard-non-interactive/local/daemon-install.test.ts index 2f7a56a6dcea..dc2fcb55519e 100644 --- a/src/commands/onboard-non-interactive/local/daemon-install.test.ts +++ b/src/commands/onboard-non-interactive/local/daemon-install.test.ts @@ -1,3 +1,4 @@ +// Non-interactive daemon install tests cover gateway service planning, token resolution, and systemd handling. import { beforeEach, describe, expect, it, vi } from "vitest"; import type { OpenClawConfig } from "../../../config/config.js"; import { installGatewayDaemonNonInteractive } from "./daemon-install.js"; diff --git a/src/commands/onboard-non-interactive/local/gateway-config.test.ts b/src/commands/onboard-non-interactive/local/gateway-config.test.ts index 029b4afd852b..7f7647ae41b0 100644 --- a/src/commands/onboard-non-interactive/local/gateway-config.test.ts +++ b/src/commands/onboard-non-interactive/local/gateway-config.test.ts @@ -1,3 +1,4 @@ +// Non-interactive gateway config tests cover port, bind, auth token, and SecretRef preservation behavior. import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; import type { OpenClawConfig } from "../../../config/types.openclaw.js"; import type { OnboardOptions } from "../../onboard-types.js";