making I18n class testable, adding minimal test

This commit is contained in:
El RIDO 2017-03-25 09:41:24 +01:00
parent 9d2e282772
commit 2a19b42b15
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
2 changed files with 35 additions and 2 deletions

View file

@ -538,6 +538,18 @@ jQuery.PrivateBin = function($, sjcl, Base64, RawDeflate) {
});
}
/**
* resets state, used for unit testing
*
* @name I18n.reset
* @function
*/
me.reset = function()
{
language = null;
translations = {};
}
return me;
})(window, document);
@ -810,7 +822,6 @@ jQuery.PrivateBin = function($, sjcl, Base64, RawDeflate) {
$cipherData = $templates = id = symmetricKey = null;
}
/**
* init navigation manager
*