fix: simplify verbose/elevated status labels

This commit is contained in:
Peter Steinberger
2026-01-09 23:41:52 +00:00
parent eea686c81e
commit e18080163f
2 changed files with 11 additions and 9 deletions
+7 -7
View File
@@ -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", () => {