mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-11 19:23:41 +00:00
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
import { expect, test } from "vitest";
|
|
|
|
import { DEFAULT_LOCAL_SETTINGS } from "@/core/settings/local";
|
|
|
|
test("defaults token usage to header total plus per-turn breakdown", () => {
|
|
expect(DEFAULT_LOCAL_SETTINGS.tokenUsage).toEqual({
|
|
headerTotal: true,
|
|
inlineMode: "per_turn",
|
|
});
|
|
});
|