import { i18n } from './i18n'; describe('i18n', () => { it('returns English translation for an unavailable language', () => { const result = i18n('acceptAndClose', 'ir'); expect(result).toBe('accept & close'); }); it('returns Dutch translation of a key', () => { const result = i18n('acceptAndClose', 'nl'); expect(result).toBe('accepteren & sluiten'); }); });