diff --git a/plugins/chat/spec/system/page_objects/chat/chat_channel.rb b/plugins/chat/spec/system/page_objects/chat/chat_channel.rb index 6d17e6d1ad8..715c2a3d2ef 100644 --- a/plugins/chat/spec/system/page_objects/chat/chat_channel.rb +++ b/plugins/chat/spec/system/page_objects/chat/chat_channel.rb @@ -69,6 +69,7 @@ module PageObjects end def send_message(text = nil) + text = text.chomp if text.present? # having \n on the end of the string counts as an Enter keypress find(".chat-composer-input").click # makes helper more reliable by ensuring focus is not lost find(".chat-composer-input").fill_in(with: text) click_send_message diff --git a/plugins/chat/spec/system/transcript_spec.rb b/plugins/chat/spec/system/transcript_spec.rb index 9db9cd93921..ad5e75212b5 100644 --- a/plugins/chat/spec/system/transcript_spec.rb +++ b/plugins/chat/spec/system/transcript_spec.rb @@ -173,7 +173,7 @@ RSpec.describe "Quoting chat message transcripts", type: :system, js: true do context "when quoting a message in another message" do fab!(:message_1) { Fabricate(:chat_message, chat_channel: chat_channel_1) } - xit "quotes the message" do + it "quotes the message" do chat_page.visit_channel(chat_channel_1) expect(chat_channel_page).to have_no_loading_skeleton