Pass through i18n keys in karma tests

pull/4035/head
David Baker 2017-05-26 15:29:58 +01:00
parent 0ab9486829
commit e07f9a8bc9
1 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,7 @@ import jssdk from 'matrix-js-sdk';
import sdk from 'matrix-react-sdk';
import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg';
import * as languageHandler from 'matrix-react-sdk/lib/languageHandler';
import test_utils from '../test-utils';
import MockHttpBackend from '../mock-request';
@ -61,6 +62,10 @@ describe('loading:', function () {
windowLocation = null;
matrixChat = null;
languageHandler.setMissingEntryGenerator(function(key) {
return key.split('|', 2)[1];
});
});
afterEach(function() {