30 lines
954 B
JavaScript
30 lines
954 B
JavaScript
/* global i18n */
|
|
|
|
describe('i18n', () => {
|
|
describe('i18n', () => {
|
|
it('returns empty string for unknown string', () => {
|
|
assert.strictEqual(i18n('random'), '');
|
|
});
|
|
it('returns message for given string', () => {
|
|
assert.equal(i18n('reportIssue'), 'Report an issue');
|
|
});
|
|
it('returns message with single substitution', () => {
|
|
const actual = i18n('attemptingReconnection', 5);
|
|
assert.equal(actual, 'Attempting reconnect in 5 seconds');
|
|
});
|
|
it('returns message with multiple substitutions', () => {
|
|
const actual = i18n('theyChangedTheTimer', ['Someone', '5 minutes']);
|
|
assert.equal(
|
|
actual,
|
|
'Someone set the disappearing message timer to 5 minutes'
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('getLocale', () => {
|
|
it('returns a string with length two or greater', () => {
|
|
const locale = i18n.getLocale();
|
|
assert.isAtLeast(locale.trim().length, 2);
|
|
});
|
|
});
|
|
});
|