mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-29 07:01:40 +03:00
fix: simplify verbose/elevated status labels
This commit is contained in:
@@ -69,8 +69,8 @@ describe("buildStatusMessage", () => {
|
||||
expect(normalized).toContain("updated 10m ago");
|
||||
expect(normalized).toContain("Runtime: direct");
|
||||
expect(normalized).toContain("Think: medium");
|
||||
expect(normalized).toContain("Verbose: off");
|
||||
expect(normalized).toContain("Elevated: on");
|
||||
expect(normalized).not.toContain("verbose");
|
||||
expect(normalized).toContain("elevated");
|
||||
expect(normalized).toContain("Queue: collect");
|
||||
});
|
||||
|
||||
@@ -82,12 +82,12 @@ describe("buildStatusMessage", () => {
|
||||
sessionScope: "per-sender",
|
||||
resolvedThink: "low",
|
||||
resolvedVerbose: "on",
|
||||
resolvedElevated: "on",
|
||||
queue: { mode: "collect", depth: 0 },
|
||||
});
|
||||
resolvedElevated: "on",
|
||||
queue: { mode: "collect", depth: 0 },
|
||||
});
|
||||
|
||||
expect(text).toContain("Verbose: on");
|
||||
expect(text).toContain("Elevated: on");
|
||||
expect(text).toContain("verbose");
|
||||
expect(text).toContain("elevated");
|
||||
});
|
||||
|
||||
it("prefers model overrides over last-run model", () => {
|
||||
|
||||
Reference in New Issue
Block a user