2020-07-28 23:09:34 +05:30
|
|
|
|
import MockAdapter from 'axios-mock-adapter';
|
|
|
|
|
import axios from '~/lib/utils/axios_utils';
|
|
|
|
|
import { initEmojiMap, glEmojiTag, EMOJI_VERSION } from '~/emoji';
|
2017-09-10 17:25:29 +05:30
|
|
|
|
import isEmojiUnicodeSupported, {
|
2017-08-17 22:00:37 +05:30
|
|
|
|
isFlagEmoji,
|
2018-03-17 18:26:18 +05:30
|
|
|
|
isRainbowFlagEmoji,
|
2017-08-17 22:00:37 +05:30
|
|
|
|
isKeycapEmoji,
|
|
|
|
|
isSkinToneComboEmoji,
|
|
|
|
|
isHorceRacingSkinToneComboEmoji,
|
|
|
|
|
isPersonZwjEmoji,
|
2017-09-10 17:25:29 +05:30
|
|
|
|
} from '~/emoji/support/is_emoji_unicode_supported';
|
2020-07-28 23:09:34 +05:30
|
|
|
|
import { trimText } from 'helpers/text_helper';
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
|
|
const emptySupportMap = {
|
|
|
|
|
personZwj: false,
|
|
|
|
|
horseRacing: false,
|
|
|
|
|
flag: false,
|
|
|
|
|
skinToneModifier: false,
|
|
|
|
|
'9.0': false,
|
|
|
|
|
'8.0': false,
|
|
|
|
|
'7.0': false,
|
|
|
|
|
6.1: false,
|
|
|
|
|
'6.0': false,
|
|
|
|
|
5.2: false,
|
|
|
|
|
5.1: false,
|
|
|
|
|
4.1: false,
|
|
|
|
|
'4.0': false,
|
|
|
|
|
3.2: false,
|
|
|
|
|
'3.0': false,
|
|
|
|
|
1.1: false,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const emojiFixtureMap = {
|
|
|
|
|
bomb: {
|
|
|
|
|
name: 'bomb',
|
|
|
|
|
moji: '💣',
|
|
|
|
|
unicodeVersion: '6.0',
|
|
|
|
|
},
|
|
|
|
|
construction_worker_tone5: {
|
|
|
|
|
name: 'construction_worker_tone5',
|
|
|
|
|
moji: '👷🏿',
|
|
|
|
|
unicodeVersion: '8.0',
|
|
|
|
|
},
|
|
|
|
|
five: {
|
|
|
|
|
name: 'five',
|
|
|
|
|
moji: '5️⃣',
|
|
|
|
|
unicodeVersion: '3.0',
|
|
|
|
|
},
|
|
|
|
|
grey_question: {
|
|
|
|
|
name: 'grey_question',
|
|
|
|
|
moji: '❔',
|
|
|
|
|
unicodeVersion: '6.0',
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
|
describe('gl_emoji', () => {
|
|
|
|
|
let mock;
|
|
|
|
|
const emojiData = getJSONFixture('emojis/emojis.json');
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
|
beforeEach(() => {
|
|
|
|
|
mock = new MockAdapter(axios);
|
|
|
|
|
mock.onGet(`/-/emojis/${EMOJI_VERSION}/emojis.json`).reply(200, emojiData);
|
|
|
|
|
|
|
|
|
|
return initEmojiMap().catch(() => {});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
mock.restore();
|
|
|
|
|
});
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
|
|
describe('glEmojiTag', () => {
|
|
|
|
|
it('bomb emoji', () => {
|
|
|
|
|
const emojiKey = 'bomb';
|
|
|
|
|
const markup = glEmojiTag(emojiFixtureMap[emojiKey].name);
|
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
|
expect(trimText(markup)).toMatchInlineSnapshot(
|
|
|
|
|
`"<gl-emoji data-name=\\"bomb\\"></gl-emoji>"`,
|
2017-08-17 22:00:37 +05:30
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('bomb emoji with sprite fallback readiness', () => {
|
|
|
|
|
const emojiKey = 'bomb';
|
|
|
|
|
const markup = glEmojiTag(emojiFixtureMap[emojiKey].name, {
|
|
|
|
|
sprite: true,
|
|
|
|
|
});
|
2020-07-28 23:09:34 +05:30
|
|
|
|
expect(trimText(markup)).toMatchInlineSnapshot(
|
|
|
|
|
`"<gl-emoji data-fallback-sprite-class=\\"emoji-bomb\\" data-name=\\"bomb\\"></gl-emoji>"`,
|
2017-08-17 22:00:37 +05:30
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('isFlagEmoji', () => {
|
2017-09-10 17:25:29 +05:30
|
|
|
|
it('should gracefully handle empty string', () => {
|
|
|
|
|
expect(isFlagEmoji('')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect flag_ac', () => {
|
|
|
|
|
expect(isFlagEmoji('🇦🇨')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect flag_us', () => {
|
|
|
|
|
expect(isFlagEmoji('🇺🇸')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect flag_zw', () => {
|
|
|
|
|
expect(isFlagEmoji('🇿🇼')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect flags', () => {
|
|
|
|
|
expect(isFlagEmoji('🎏')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect triangular_flag_on_post', () => {
|
|
|
|
|
expect(isFlagEmoji('🚩')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect single letter', () => {
|
|
|
|
|
expect(isFlagEmoji('🇦')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect >2 letters', () => {
|
|
|
|
|
expect(isFlagEmoji('🇦🇧🇨')).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
|
describe('isRainbowFlagEmoji', () => {
|
|
|
|
|
it('should gracefully handle empty string', () => {
|
|
|
|
|
expect(isRainbowFlagEmoji('')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
|
it('should detect rainbow_flag', () => {
|
|
|
|
|
expect(isRainbowFlagEmoji('🏳🌈')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
|
|
it("should not detect flag_white on its' own", () => {
|
2018-03-17 18:26:18 +05:30
|
|
|
|
expect(isRainbowFlagEmoji('🏳')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
|
|
it("should not detect rainbow on its' own", () => {
|
2018-03-17 18:26:18 +05:30
|
|
|
|
expect(isRainbowFlagEmoji('🌈')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
|
it('should not detect flag_white with something else', () => {
|
|
|
|
|
expect(isRainbowFlagEmoji('🏳🔵')).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
describe('isKeycapEmoji', () => {
|
2017-09-10 17:25:29 +05:30
|
|
|
|
it('should gracefully handle empty string', () => {
|
|
|
|
|
expect(isKeycapEmoji('')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect one(keycap)', () => {
|
|
|
|
|
expect(isKeycapEmoji('1️⃣')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect nine(keycap)', () => {
|
|
|
|
|
expect(isKeycapEmoji('9️⃣')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect ten(keycap)', () => {
|
|
|
|
|
expect(isKeycapEmoji('🔟')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect hash(keycap)', () => {
|
|
|
|
|
expect(isKeycapEmoji('#⃣')).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('isSkinToneComboEmoji', () => {
|
2017-09-10 17:25:29 +05:30
|
|
|
|
it('should gracefully handle empty string', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect hand_splayed_tone5', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('🖐🏿')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect hand_splayed', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('🖐')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect lifter_tone1', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('🏋🏻')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect lifter', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('🏋')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect rowboat_tone4', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('🚣🏾')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect rowboat', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('🚣')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect individual tone emoji', () => {
|
|
|
|
|
expect(isSkinToneComboEmoji('🏻')).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('isHorceRacingSkinToneComboEmoji', () => {
|
2017-09-10 17:25:29 +05:30
|
|
|
|
it('should gracefully handle empty string', () => {
|
|
|
|
|
expect(isHorceRacingSkinToneComboEmoji('')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect horse_racing_tone2', () => {
|
|
|
|
|
expect(isHorceRacingSkinToneComboEmoji('🏇🏼')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect horse_racing', () => {
|
|
|
|
|
expect(isHorceRacingSkinToneComboEmoji('🏇')).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('isPersonZwjEmoji', () => {
|
2017-09-10 17:25:29 +05:30
|
|
|
|
it('should gracefully handle empty string', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect couple_mm', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👨❤️👨')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect couple_with_heart', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('💑')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect couplekiss', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('💏')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect family_mmb', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👨👨👦')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect family_mwgb', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👨👩👧👦')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect family', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👪')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should detect kiss_ww', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👩❤️💋👩')).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect girl', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👧')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect girl_tone5', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👧🏿')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect man', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👨')).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('should not detect woman', () => {
|
|
|
|
|
expect(isPersonZwjEmoji('👩')).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('isEmojiUnicodeSupported', () => {
|
2017-09-10 17:25:29 +05:30
|
|
|
|
it('should gracefully handle empty string with unicode support', () => {
|
2018-12-13 13:39:08 +05:30
|
|
|
|
const isSupported = isEmojiUnicodeSupported({ '1.0': true }, '', '1.0');
|
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
|
expect(isSupported).toBeTruthy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
|
it('should gracefully handle empty string without unicode support', () => {
|
2018-12-13 13:39:08 +05:30
|
|
|
|
const isSupported = isEmojiUnicodeSupported({}, '', '1.0');
|
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
|
expect(isSupported).toBeFalsy();
|
|
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
it('bomb(6.0) with 6.0 support', () => {
|
|
|
|
|
const emojiKey = 'bomb';
|
2020-05-24 23:13:21 +05:30
|
|
|
|
const unicodeSupportMap = { ...emptySupportMap, '6.0': true };
|
2017-08-17 22:00:37 +05:30
|
|
|
|
const isSupported = isEmojiUnicodeSupported(
|
|
|
|
|
unicodeSupportMap,
|
|
|
|
|
emojiFixtureMap[emojiKey].moji,
|
|
|
|
|
emojiFixtureMap[emojiKey].unicodeVersion,
|
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
expect(isSupported).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('bomb(6.0) without 6.0 support', () => {
|
|
|
|
|
const emojiKey = 'bomb';
|
|
|
|
|
const unicodeSupportMap = emptySupportMap;
|
|
|
|
|
const isSupported = isEmojiUnicodeSupported(
|
|
|
|
|
unicodeSupportMap,
|
|
|
|
|
emojiFixtureMap[emojiKey].moji,
|
|
|
|
|
emojiFixtureMap[emojiKey].unicodeVersion,
|
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
expect(isSupported).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('bomb(6.0) without 6.0 but with 9.0 support', () => {
|
|
|
|
|
const emojiKey = 'bomb';
|
2020-05-24 23:13:21 +05:30
|
|
|
|
const unicodeSupportMap = { ...emptySupportMap, '9.0': true };
|
2017-08-17 22:00:37 +05:30
|
|
|
|
const isSupported = isEmojiUnicodeSupported(
|
|
|
|
|
unicodeSupportMap,
|
|
|
|
|
emojiFixtureMap[emojiKey].moji,
|
|
|
|
|
emojiFixtureMap[emojiKey].unicodeVersion,
|
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
expect(isSupported).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('construction_worker_tone5(8.0) without skin tone modifier support', () => {
|
|
|
|
|
const emojiKey = 'construction_worker_tone5';
|
2020-05-24 23:13:21 +05:30
|
|
|
|
const unicodeSupportMap = {
|
|
|
|
|
...emptySupportMap,
|
2017-08-17 22:00:37 +05:30
|
|
|
|
skinToneModifier: false,
|
|
|
|
|
'9.0': true,
|
|
|
|
|
'8.0': true,
|
|
|
|
|
'7.0': true,
|
|
|
|
|
6.1: true,
|
|
|
|
|
'6.0': true,
|
|
|
|
|
5.2: true,
|
|
|
|
|
5.1: true,
|
|
|
|
|
4.1: true,
|
|
|
|
|
'4.0': true,
|
|
|
|
|
3.2: true,
|
|
|
|
|
'3.0': true,
|
|
|
|
|
1.1: true,
|
2020-05-24 23:13:21 +05:30
|
|
|
|
};
|
2017-08-17 22:00:37 +05:30
|
|
|
|
const isSupported = isEmojiUnicodeSupported(
|
|
|
|
|
unicodeSupportMap,
|
|
|
|
|
emojiFixtureMap[emojiKey].moji,
|
|
|
|
|
emojiFixtureMap[emojiKey].unicodeVersion,
|
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
expect(isSupported).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('use native keycap on >=57 chrome', () => {
|
|
|
|
|
const emojiKey = 'five';
|
2020-05-24 23:13:21 +05:30
|
|
|
|
const unicodeSupportMap = {
|
|
|
|
|
...emptySupportMap,
|
2017-08-17 22:00:37 +05:30
|
|
|
|
'3.0': true,
|
|
|
|
|
meta: {
|
|
|
|
|
isChrome: true,
|
|
|
|
|
chromeVersion: 57,
|
|
|
|
|
},
|
2020-05-24 23:13:21 +05:30
|
|
|
|
};
|
2017-08-17 22:00:37 +05:30
|
|
|
|
const isSupported = isEmojiUnicodeSupported(
|
|
|
|
|
unicodeSupportMap,
|
|
|
|
|
emojiFixtureMap[emojiKey].moji,
|
|
|
|
|
emojiFixtureMap[emojiKey].unicodeVersion,
|
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
expect(isSupported).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('fallback keycap on <57 chrome', () => {
|
|
|
|
|
const emojiKey = 'five';
|
2020-05-24 23:13:21 +05:30
|
|
|
|
const unicodeSupportMap = {
|
|
|
|
|
...emptySupportMap,
|
2017-08-17 22:00:37 +05:30
|
|
|
|
'3.0': true,
|
|
|
|
|
meta: {
|
|
|
|
|
isChrome: true,
|
|
|
|
|
chromeVersion: 50,
|
|
|
|
|
},
|
2020-05-24 23:13:21 +05:30
|
|
|
|
};
|
2017-08-17 22:00:37 +05:30
|
|
|
|
const isSupported = isEmojiUnicodeSupported(
|
|
|
|
|
unicodeSupportMap,
|
|
|
|
|
emojiFixtureMap[emojiKey].moji,
|
|
|
|
|
emojiFixtureMap[emojiKey].unicodeVersion,
|
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
|
expect(isSupported).toBeFalsy();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|