Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试用茉莉花测试角度翻译。我正在使用角度本地化,但我不知道如何在 jasmine/karma 单元测试中使用它。我通过 URL 参数触发语言更改,该参数适用于运行良好的 e2e 测试。感谢您提供有关如何更改茉莉花语言的任何建议。
解决了。
tsconfig
"resolveJsonModule": true, "allowSyntheticDefaultImports": true,
规格文件
import { loadTranslations } from '@angular/localize'; import de from '../assets/de.json'; loadTranslations(de);