mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
5f6dec7d18
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
29 lines
959 B
JavaScript
29 lines
959 B
JavaScript
const en = require("../src/i18n/strings/en_EN");
|
|
const de = require("../src/i18n/strings/de_DE");
|
|
|
|
// Mock the browser-request for the languageHandler tests to return
|
|
// Fake languages.json containing references to en_EN and de_DE
|
|
// en_EN.json
|
|
// de_DE.json
|
|
module.exports = jest.fn((opts, cb) => {
|
|
const url = opts.url || opts.uri;
|
|
if (url && url.endsWith("languages.json")) {
|
|
cb(undefined, {status: 200}, JSON.stringify({
|
|
"en": {
|
|
"fileName": "en_EN.json",
|
|
"label": "English",
|
|
},
|
|
"de": {
|
|
"fileName": "de_DE.json",
|
|
"label": "German",
|
|
},
|
|
}));
|
|
} else if (url && url.endsWith("en_EN.json")) {
|
|
cb(undefined, {status: 200}, JSON.stringify(en));
|
|
} else if (url && url.endsWith("de_DE.json")) {
|
|
cb(undefined, {status: 200}, JSON.stringify(de));
|
|
} else {
|
|
cb(true, {status: 404}, "");
|
|
}
|
|
});
|