-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.js
23 lines (22 loc) · 934 Bytes
/
tests.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const {testEmojiCount} = require('./tests/emojiCount.js');
const {testEmojify} = require('./tests/emojify.js');
const {testGetContainedEmojis} = require('./tests/getContainedEmojis.js');
const {testIndexOfEmoji} = require('./tests/indexOfEmoji.js');
const {testIsValidEmoji} = require('./tests/isValidEmoji.js');
const {testLengthWithEmoji} = require('./tests/lengthWithEmoji.js');
const {testRemoveEmoji} = require('./tests/removeEmoji.js');
const {testReplaceEmoji} = require('./tests/replaceEmoji.js');
const {testShortcodeify} = require('./tests/shortcodeify.js');
const {testSplitByEmoji} = require('./tests/splitByEmoji.js');
const {testSubstringWithEmoji} = require('./tests/substringWithEmoji.js');
testEmojiCount();
testEmojify();
testGetContainedEmojis();
testIndexOfEmoji();
testIsValidEmoji();
testLengthWithEmoji();
testRemoveEmoji();
testReplaceEmoji();
testShortcodeify();
testSplitByEmoji();
testSubstringWithEmoji();