Fix thinking_face emoji autocomplete (#5238)
This commit is contained in:
parent
97b3d0cd56
commit
72d939b69f
2 changed files with 17 additions and 7 deletions
|
@ -96,4 +96,11 @@ describe('emoji_index', () => {
|
|||
expect(search('polo').map(trimEmojis)).to.deep.equal(expected);
|
||||
expect(emojiIndex.search('polo').map(trimEmojis)).to.deep.equal(expected);
|
||||
});
|
||||
|
||||
it('can search for thinking_face', () => {
|
||||
let expected = [ { id: 'thinking_face', unified: '1f914', native: '🤔' } ];
|
||||
expect(search('thinking_fac').map(trimEmojis)).to.deep.equal(expected);
|
||||
// this is currently broken in emoji-mart
|
||||
// expect(emojiIndex.search('thinking_fac').map(trimEmojis)).to.deep.equal(expected);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue