mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 02:58:48 +08:00
FIX: correctly open channel info (#20297)
A typo was preventing a click on channel title when in drawer mode to correctly open the channel info in full page. This commit fixes the typo and adds a test.
This commit is contained in:
@ -10,6 +10,24 @@ RSpec.describe "Drawer", type: :system, js: true do
|
||||
sign_in(current_user)
|
||||
end
|
||||
|
||||
context "when on channel" do
|
||||
fab!(:channel) { Fabricate(:chat_channel) }
|
||||
fab!(:membership) do
|
||||
Fabricate(:user_chat_channel_membership, user: current_user, chat_channel: channel)
|
||||
end
|
||||
|
||||
context "when clicking channel title" do
|
||||
it "opens channel info page" do
|
||||
visit("/")
|
||||
chat_page.open_from_header
|
||||
drawer.open_channel(channel)
|
||||
page.find(".chat-channel-title").click
|
||||
|
||||
expect(page).to have_current_path("/chat/c/#{channel.slug}/#{channel.id}/info/about")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context "when opening" do
|
||||
it "uses stored size" do
|
||||
visit("/") # we need to visit the page first to set the local storage
|
||||
|
Reference in New Issue
Block a user