mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-22 12:36:26 +00:00
* fix: DeerFlow brand casing in disclaimer, 'What's New' title, setup-sandbox .PHONY - en-US disclaimer said 'Deerflow'; every other user-facing string brands it 'DeerFlow' (rendered under the chat composer) - landing section title 'Whats New in DeerFlow 2.0' -> 'What's New' - setup-sandbox was the only Makefile target missing from .PHONY * test: align disclaimer assertions with DeerFlow brand casing The unit and e2e suites still expected the old "Deerflow" spelling in inputBox.disclaimer; update both to the corrected locale string so the i18n load test and the chat footer assertion pass again. --------- Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
25 lines
835 B
TypeScript
25 lines
835 B
TypeScript
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 频道消息和私聊。",
|
||
);
|
||
});
|
||
});
|