fix(status): show explicit fast mode state (#87115) · openclaw/openclaw@41962ed
sjf
·
2026-05-27
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -671,7 +671,7 @@ describe("buildStatusMessage", () => {
|
671 | 671 | expect(normalized).not.toContain("· pi"); |
672 | 672 | }); |
673 | 673 | |
674 | | -it("hides fast mode when disabled", () => { |
| 674 | +it("shows fast mode when disabled", () => { |
675 | 675 | const text = buildStatusMessage({ |
676 | 676 | agent: { |
677 | 677 | model: "anthropic/claude-opus-4-6", |
@@ -685,7 +685,7 @@ describe("buildStatusMessage", () => {
|
685 | 685 | queue: { mode: "collect", depth: 0 }, |
686 | 686 | }); |
687 | 687 | |
688 | | -expect(normalizeTestText(text)).not.toContain("Fast"); |
| 688 | +expect(normalizeTestText(text)).toContain("Fast: off"); |
689 | 689 | }); |
690 | 690 | |
691 | 691 | it("shows configured text verbosity for the active model", () => { |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。