mirror of
https://github.com/zulip/zulip.git
synced 2025-11-23 16:01:24 +00:00
ES and TypeScript modules are strict by default and don’t need this directive. ESLint will remind us to add it to new CommonJS files and remove it from ES and TypeScript modules. Signed-off-by: Anders Kaseorg <anders@zulip.com>
26 lines
832 B
JavaScript
26 lines
832 B
JavaScript
"use strict";
|
|
|
|
set_global("$", global.make_zjquery());
|
|
set_global("upload_widget", {});
|
|
zrequire("settings_emoji");
|
|
|
|
run_test("build_emoji_upload_widget", () => {
|
|
let build_widget_stub = false;
|
|
upload_widget.build_widget = function (
|
|
get_file_input,
|
|
file_name_field,
|
|
input_error,
|
|
clear_button,
|
|
upload_button,
|
|
) {
|
|
assert.deepEqual(get_file_input(), $("#emoji_file_input"));
|
|
assert.deepEqual(file_name_field, $("#emoji-file-name"));
|
|
assert.deepEqual(input_error, $("#emoji_file_input_error"));
|
|
assert.deepEqual(clear_button, $("#emoji_image_clear_button"));
|
|
assert.deepEqual(upload_button, $("#emoji_upload_button"));
|
|
build_widget_stub = true;
|
|
};
|
|
settings_emoji.build_emoji_upload_widget();
|
|
assert(build_widget_stub);
|
|
});
|