mirror of https://github.com/zulip/zulip.git
minor: Move narrow mock to be in lexical order.
This commit is contained in:
parent
a2809dd361
commit
d14441ffd3
|
@ -76,9 +76,6 @@ mock_esm("../../static/js/hash_util", {
|
|||
|
||||
by_stream_topic_uri: () => "https://www.example.com",
|
||||
});
|
||||
mock_esm("../../static/js/narrow", {
|
||||
set_narrow_title: noop,
|
||||
});
|
||||
mock_esm("../../static/js/message_list_data", {
|
||||
MessageListData: class {},
|
||||
});
|
||||
|
@ -96,6 +93,9 @@ mock_esm("../../static/js/muting", {
|
|||
return false;
|
||||
},
|
||||
});
|
||||
mock_esm("../../static/js/narrow", {
|
||||
set_narrow_title: noop,
|
||||
});
|
||||
mock_esm("../../static/js/recent_senders", {
|
||||
get_topic_recent_senders: () => [1, 2],
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue