本文整理汇总了TypeScript中bootstrap/api/i18n/async-locale-data.AsyncLocaleData类的典型用法代码示例。如果您正苦于以下问题:TypeScript AsyncLocaleData类的具体用法?TypeScript AsyncLocaleData怎么用?TypeScript AsyncLocaleData使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AsyncLocaleData类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("Should return normalized BCP 47 tag", function() {
asyncLocaleData = new AsyncLocaleData(
log,
createMockTryCatchUtils("fr-FR") as any,
chromeFileService,
mockServices as any,
);
let result = asyncLocaleData.getAppLocale();
expect(result).to.equal("fr-fr");
});
示例2: Error
it("Should be rejected on parseJSON exception", function() {
chromeFileService.parseJSON.returns(new Promise((resolve, reject) => {
throw new Error();
}));
let promise = asyncLocaleData.getAvailableLocales();
return expect(promise).to.be.rejectedWith(Error);
});
示例3: expect
it("Should return best match", function() {
let result = asyncLocaleData.getBestMatches(["fr-FR", "en-us"], localesMap);
return expect(result).to.be.a("map").
which.have.all.keys("fr", "en-us").
and.include("fr").
and.include("en_US").
and.to.not.have.any.keys("de");
});