Files
clawdbot/src/auto-reply/thinking.test.ts
2026-01-05 07:24:51 +01:00

9 lines
244 B
TypeScript

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