mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
10 lines
274 B
JavaScript
10 lines
274 B
JavaScript
import { getCountryFlag } from '../flag';
|
|
|
|
describe('#flag', () => {
|
|
it('returns the correct flag ', () => {
|
|
expect(getCountryFlag('cz')).toBe('🇨🇿');
|
|
expect(getCountryFlag('IN')).toBe('🇮🇳');
|
|
expect(getCountryFlag('US')).toBe('🇺🇸');
|
|
});
|
|
});
|