mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			201 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			201 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { removeEmoji } from '../emoji';
 | 
						|
 | 
						|
describe('#removeEmoji', () => {
 | 
						|
  it('returns values without emoji', () => {
 | 
						|
    expect(removeEmoji('😄Hi👋🏻 there❕')).toEqual('Hi there');
 | 
						|
  });
 | 
						|
});
 |