chore(localize): add test to check for BG space separator

This commit is contained in:
Joren Broekema 2019-08-16 11:28:38 +02:00
parent 59053f161c
commit 0c9c116e46

View file

@ -8,5 +8,6 @@ describe('getGroupSeparator', () => {
expect(getGroupSeparator('nl-NL')).to.equal('.');
expect(getGroupSeparator('fr-FR')).to.equal(' ');
expect(getGroupSeparator('es-ES')).to.equal('.');
expect(getGroupSeparator('bg-BG')).to.equal(' ');
});
});