mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
urls: Generate narrow links in frontend with "channel" operator.
Fixes #30385.
This commit is contained in:
committed by
Tim Abbott
parent
70ab893d34
commit
d3987f611c
@@ -477,7 +477,7 @@ async function test_narrow_public_streams(page: Page): Promise<void> {
|
||||
);
|
||||
await page.click(".subscriptions-header .exit-sign");
|
||||
await page.waitForSelector("#subscription_overlay", {hidden: true});
|
||||
await page.goto(`http://zulip.zulipdev.com:9981/#narrow/stream/${stream_id}-Denmark`);
|
||||
await page.goto(`http://zulip.zulipdev.com:9981/#narrow/channel/${stream_id}-Denmark`);
|
||||
let message_list_id = await common.get_current_msg_list_id(page, true);
|
||||
await page.waitForSelector(
|
||||
`.message-list[data-message-list-id='${message_list_id}'] .recipient_row ~ .recipient_row ~ .recipient_row`,
|
||||
@@ -488,7 +488,7 @@ async function test_narrow_public_streams(page: Page): Promise<void> {
|
||||
)) !== null,
|
||||
);
|
||||
|
||||
await page.goto("http://zulip.zulipdev.com:9981/#narrow/streams/public");
|
||||
await page.goto("http://zulip.zulipdev.com:9981/#narrow/channels/public");
|
||||
message_list_id = await common.get_current_msg_list_id(page, true);
|
||||
await page.waitForSelector(
|
||||
`.message-list[data-message-list-id='${message_list_id}'] .recipient_row ~ .recipient_row ~ .recipient_row`,
|
||||
|
||||
Reference in New Issue
Block a user