mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +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('🇺🇸');
 | 
						|
  });
 | 
						|
});
 |