mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-25 17:01:41 +03:00
9 lines
244 B
TypeScript
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");
|
|
});
|
|
});
|