deer-flow/frontend/tests/unit/core/i18n/translations.test.ts
Ryker_Feng 1e8cedb9f4
feat(channels): polish Buzz frontend (#4727)
* feat(channels): complete Buzz frontend copy

* feat(channels): add official Buzz provider icon

* test(i18n): clarify translation suite scope
2026-08-12 08:33:35 +08:00

25 lines
835 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { describe, expect, it } from "@rstest/core";
import { loadTranslations } from "@/core/i18n/translations";
describe("core copy loading", () => {
it("loads only the requested overseas and domestic copy", async () => {
const [english, chinese] = await Promise.all([
loadTranslations("en-US"),
loadTranslations("zh-CN"),
]);
expect(english.inputBox.disclaimer).toBe(
"Deerflow is AI and can make mistakes",
);
expect(chinese.inputBox.disclaimer).toBe(
"内容由AI生成重要信息请务必核查",
);
expect(english.channels.descriptions.buzz).toBe(
"Buzz channels and direct messages through your DeerFlow agent.",
);
expect(chinese.channels.descriptions.buzz).toBe(
"通过 DeerFlow 智能体接收 Buzz 频道消息和私聊。",
);
});
});