fix(web): add English onboarding copy

This commit is contained in:
creatixchu
2026-08-13 17:33:53 +08:00
parent 5a16a5eaf5
commit fc90114ad9
3 changed files with 9 additions and 5 deletions

View File

@@ -62,7 +62,11 @@ function mount(version?: string, mutateImpl: () => Promise<unknown> = () => Prom
describe('WelcomeNotice', () => {
it('uses the exact owner copy in both GUI locales', () => {
expect(WELCOME_NOTICE_COPY.en).toEqual(WELCOME_NOTICE_COPY.zh)
expect(WELCOME_NOTICE_COPY.en).toEqual({
title: 'Internal Testing Notice',
body: "DeepSeek Harness 0.1 remains in testing for Harness developers. Many areas need further improvement, and we welcome feedback from the developer community. DeepSeek Harness's core plugins and foundational APIs will continue to evolve rapidly over the coming months.\n\nWe look forward to exploring the limits of intelligence with developers around the world, building on open-source, open, reusable, and composable infrastructure. We welcome Harness developers everywhere to join the DSH plugin ecosystem.",
continueLabel: 'Continue',
})
expect(en.welcomeBody).toBe(WELCOME_NOTICE_COPY.en.body)
expect(zh.welcomeBody).toBe(WELCOME_NOTICE_COPY.zh.body)
})