Fix languageHandler's use of $webapp languages.json for Jest

This commit is contained in:
Travis Ralston 2020-01-09 17:22:50 -07:00
parent ffd037dfa8
commit 4dfbce3108

View File

@ -419,9 +419,9 @@ export function pickBestLanguage(langs) {
function getLangsJson() {
return new Promise(async (resolve, reject) => {
let url;
try {
if (typeof(webpackLangJsonUrl) === 'string') { // in Jest this 'url' isn't a URL, so just fall through
url = webpackLangJsonUrl;
} catch (e) {
} else {
url = i18nFolder + 'languages.json';
}
request(