mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-16 21:06:22 +08: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');
|
|
});
|
|
});
|