mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +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');
|
|
});
|
|
});
|