mirror of https://github.com/zulip/zulip.git
node_tests: Mock sortablejs to avoid __Rewire__.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
5fc8a12d7b
commit
92a46888f0
|
@ -37,6 +37,8 @@ page_params.custom_profile_field_types = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mock_esm("sortablejs", {Sortable: {create: () => {}}});
|
||||||
|
|
||||||
const settings_profile_fields = zrequire("settings_profile_fields");
|
const settings_profile_fields = zrequire("settings_profile_fields");
|
||||||
|
|
||||||
function test_populate(opts) {
|
function test_populate(opts) {
|
||||||
|
@ -74,8 +76,7 @@ function test_populate(opts) {
|
||||||
assert.equal(num_appends, fields_data.length);
|
assert.equal(num_appends, fields_data.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
run_test("populate_profile_fields", (override) => {
|
run_test("populate_profile_fields", () => {
|
||||||
override(settings_profile_fields, "create_sortable", () => {});
|
|
||||||
const fields_data = [
|
const fields_data = [
|
||||||
{
|
{
|
||||||
type: SHORT_TEXT_ID,
|
type: SHORT_TEXT_ID,
|
||||||
|
|
|
@ -11,12 +11,6 @@ const meta = {
|
||||||
loaded: false,
|
loaded: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
export function create_sortable(...opts) {
|
|
||||||
// This function is extracted so tests can easily
|
|
||||||
// stub Sortable.
|
|
||||||
return Sortable.create(...opts);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function maybe_disable_widgets() {
|
export function maybe_disable_widgets() {
|
||||||
if (page_params.is_admin) {
|
if (page_params.is_admin) {
|
||||||
return;
|
return;
|
||||||
|
@ -271,7 +265,7 @@ function set_up_choices_field_edit_form(profile_field, field_data) {
|
||||||
// Add blank choice at last
|
// Add blank choice at last
|
||||||
create_choice_row(choice_list);
|
create_choice_row(choice_list);
|
||||||
update_choice_delete_btn(choice_list, false);
|
update_choice_delete_btn(choice_list, false);
|
||||||
create_sortable(choice_list[0], {
|
Sortable.create(choice_list[0], {
|
||||||
onUpdate() {},
|
onUpdate() {},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -410,7 +404,7 @@ export function do_populate_profile_fields(profile_fields_data) {
|
||||||
|
|
||||||
if (page_params.is_admin) {
|
if (page_params.is_admin) {
|
||||||
const field_list = $("#admin_profile_fields_table")[0];
|
const field_list = $("#admin_profile_fields_table")[0];
|
||||||
create_sortable(field_list, {
|
Sortable.create(field_list, {
|
||||||
onUpdate: update_field_order,
|
onUpdate: update_field_order,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -425,7 +419,7 @@ function set_up_choices_field() {
|
||||||
|
|
||||||
if (page_params.is_admin) {
|
if (page_params.is_admin) {
|
||||||
const choice_list = $("#profile_field_choices")[0];
|
const choice_list = $("#profile_field_choices")[0];
|
||||||
create_sortable(choice_list, {
|
Sortable.create(choice_list, {
|
||||||
onUpdate() {},
|
onUpdate() {},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue