fix: clean status + help + mid alias

This commit is contained in:
Peter Steinberger
2026-01-05 07:24:51 +01:00
parent 5aebc07369
commit 5431a9c692
4 changed files with 21 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
import { describe, expect, it } from "vitest";
import { normalizeThinkLevel } from "./thinking.js";
describe("normalizeThinkLevel", () => {
it("accepts mid as medium", () => {
expect(normalizeThinkLevel("mid")).toBe("medium");
});
});