ui_init test: Test with real emoji.js.

This commit is contained in:
Steve Howell 2020-07-25 22:47:37 +00:00 committed by Tim Abbott
parent aedf1660f8
commit 91de92ce2f
1 changed files with 2 additions and 3 deletions

View File

@ -39,7 +39,6 @@ const ignore_modules = [
"compose_pm_pill", "compose_pm_pill",
"copy_and_paste", "copy_and_paste",
"drafts", "drafts",
"emoji",
"emoji_picker", "emoji_picker",
"gear_menu", "gear_menu",
"hashchange", "hashchange",
@ -68,8 +67,6 @@ for (const mod of ignore_modules) {
}); });
} }
emoji.emojis_by_name = new Map();
util.is_mobile = () => false; util.is_mobile = () => false;
global.stub_templates(() => "some-html"); global.stub_templates(() => "some-html");
ui.get_scroll_element = (element) => element; ui.get_scroll_element = (element) => element;
@ -77,6 +74,7 @@ ui.get_scroll_element = (element) => element;
zrequire("alert_words"); zrequire("alert_words");
zrequire("hash_util"); zrequire("hash_util");
zrequire("echo"); zrequire("echo");
zrequire("emoji");
zrequire("colorspace"); zrequire("colorspace");
zrequire("stream_color"); zrequire("stream_color");
zrequire("stream_edit"); zrequire("stream_edit");
@ -152,6 +150,7 @@ page_params.unread_msgs = {
}; };
page_params.recent_private_conversations = []; page_params.recent_private_conversations = [];
page_params.user_status = {}; page_params.user_status = {};
page_params.realm_emoji = {};
page_params.realm_users = []; page_params.realm_users = [];
page_params.realm_non_active_users = []; page_params.realm_non_active_users = [];
page_params.cross_realm_bots = []; page_params.cross_realm_bots = [];