summaryrefslogtreecommitdiffstats
path: root/webapp/tests/emoticons.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/emoticons.test.jsx')
-rw-r--r--webapp/tests/emoticons.test.jsx15
1 files changed, 9 insertions, 6 deletions
diff --git a/webapp/tests/emoticons.test.jsx b/webapp/tests/emoticons.test.jsx
index bb0421651..bf025e6b2 100644
--- a/webapp/tests/emoticons.test.jsx
+++ b/webapp/tests/emoticons.test.jsx
@@ -3,42 +3,45 @@
import assert from 'assert';
+import EmojiStore from 'stores/emoji_store.jsx';
import * as Emoticons from 'utils/emoticons.jsx';
describe('Emoticons', function() {
this.timeout(100000);
it('handleEmoticons', function(done) {
+ const emojis = EmojiStore.getEmojis();
+
assert.equal(
- Emoticons.handleEmoticons(':goat: :dash:', new Map()),
+ Emoticons.handleEmoticons(':goat: :dash:', new Map(), emojis),
'MM_EMOTICON0 MM_EMOTICON1',
'should replace emoticons with tokens'
);
assert.equal(
- Emoticons.handleEmoticons(':goat::dash:', new Map()),
+ Emoticons.handleEmoticons(':goat::dash:', new Map(), emojis),
'MM_EMOTICON0MM_EMOTICON1',
'should replace emoticons not separated by whitespace'
);
assert.equal(
- Emoticons.handleEmoticons('/:goat:..:dash:)', new Map()),
+ Emoticons.handleEmoticons('/:goat:..:dash:)', new Map(), emojis),
'/MM_EMOTICON0..MM_EMOTICON1)',
'should replace emoticons separated by punctuation'
);
assert.equal(
- Emoticons.handleEmoticons('asdf:goat:asdf:dash:asdf', new Map()),
+ Emoticons.handleEmoticons('asdf:goat:asdf:dash:asdf', new Map(), emojis),
'asdfMM_EMOTICON0asdfMM_EMOTICON1asdf',
'should replace emoticons separated by text'
);
assert.equal(
- Emoticons.handleEmoticons(':asdf: :goat : : dash:', new Map()),
+ Emoticons.handleEmoticons(':asdf: :goat : : dash:', new Map(), emojis),
':asdf: :goat : : dash:',
'shouldn\'t replace invalid emoticons'
);
done();
});
-}); \ No newline at end of file
+});