fix(signal): avoid duplicate cli missing note (#96932) · openclaw/openclaw@751a6c2
openclaw
·
2026-06-26
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -23,6 +23,7 @@ import {
|
23 | 23 | import { probeSignal } from "./probe.js"; |
24 | 24 | import { clearSignalRuntime } from "./runtime.js"; |
25 | 25 | import { |
| 26 | +createSignalCliPathTextInput, |
26 | 27 | normalizeSignalAccountInput, |
27 | 28 | parseSignalAllowFromEntries, |
28 | 29 | signalDmPolicy, |
@@ -214,6 +215,13 @@ describe("probeSignal", () => {
|
214 | 215 | |
215 | 216 | expect(status.configured).toBe(true); |
216 | 217 | }); |
| 218 | + |
| 219 | +it("does not show a second missing-binary note before the cliPath prompt", () => { |
| 220 | +const input = createSignalCliPathTextInput(async () => true); |
| 221 | + |
| 222 | +expect(input.helpLines).toBeUndefined(); |
| 223 | +expect(input.helpTitle).toBeUndefined(); |
| 224 | +}); |
217 | 225 | }); |
218 | 226 | |
219 | 227 | describe("signal outbound", () => { |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。