import { describe, expect, it } from "vitest"; import type { OpenClawConfig } from "../config/config.js"; import { resolveSetupSecretInputString } from "./setup.secret-input.js";
it("returns plaintext strings when value is not a SecretRef", async () => { const resolved = await resolveSetupSecretInputString({
config: makeConfig(),
value: "plain-text",
path: "gateway.auth.password",
});