stream_list: Extract initialize_stream_cursor.

This does not create an event handler and thus did not belong in
set_event_handlers.
This commit is contained in:
Tim Abbott
2023-05-31 15:43:46 -07:00
parent e2c9839c7b
commit 5c0d63fb9a
2 changed files with 20 additions and 21 deletions

View File

@@ -21,9 +21,6 @@ mock_esm("../src/narrow_state", {
active: () => false,
});
const topic_list = mock_esm("../src/topic_list");
mock_esm("../src/keydown_util", {
handle: noop,
});
const scroll_util = mock_esm("../src/scroll_util", {
scroll_element_into_container() {},
get_scroll_element: ($element) => $element,
@@ -378,7 +375,7 @@ test_ui("zoom_in_and_zoom_out", ({mock_template}) => {
$("#stream-filters-container")[0] = {
dataset: {},
};
stream_list.set_event_handlers();
stream_list.initialize_stream_cursor();
mock_template("filter_topics", false, () => "filter-topics-stub");
let filter_topics_appended = false;
@@ -430,8 +427,6 @@ test_ui("narrowing", ({mock_template}) => {
assert.ok(!$("<devel-sidebar-row-stub>").hasClass("active-filter"));
stream_list.set_event_handlers();
let filter;
filter = new Filter([{operator: "stream", operand: "devel"}]);