Compare commits
1 Commits
main
...
dev/disabl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
819efb0434 |
@ -24,7 +24,8 @@ RSpec.describe "Chat channel", type: :system, js: true do
|
||||
expect(channel).to have_no_loading_skeleton
|
||||
expect(page).to have_no_css("[data-id='#{unloaded_message.id}']")
|
||||
|
||||
channel.send_message("test_message")
|
||||
find(".chat-composer-input").fill_in(with: "test message")
|
||||
find(".send-btn").click
|
||||
|
||||
expect(channel).to have_no_loading_skeleton
|
||||
expect(page).to have_css("[data-id='#{unloaded_message.id}']")
|
||||
|
||||
@ -6,7 +6,6 @@ RSpec.describe "JIT messages", type: :system, js: true do
|
||||
fab!(:other_user) { Fabricate(:user) }
|
||||
|
||||
let(:chat) { PageObjects::Pages::Chat.new }
|
||||
let(:channel) { PageObjects::Pages::ChatChannel.new }
|
||||
|
||||
before do
|
||||
Jobs.run_immediately!
|
||||
@ -18,7 +17,8 @@ RSpec.describe "JIT messages", type: :system, js: true do
|
||||
context "when mentioning a user not on the channel" do
|
||||
it "displays a mention warning" do
|
||||
chat.visit_channel(channel_1)
|
||||
channel.send_message("hi @#{other_user.username}")
|
||||
find(".chat-composer-input").fill_in(with: "hi @#{other_user.username}")
|
||||
find(".send-btn").click
|
||||
|
||||
expect(page).to have_content(
|
||||
I18n.t("js.chat.mention_warning.without_membership.one", username: other_user.username),
|
||||
@ -37,7 +37,9 @@ RSpec.describe "JIT messages", type: :system, js: true do
|
||||
|
||||
it "displays a mention warning" do
|
||||
chat.visit_channel(private_channel_1)
|
||||
channel.send_message("hi @#{other_user.username}")
|
||||
find(".chat-composer-input").fill_in(with: "hi @#{other_user.username}")
|
||||
find(".chat-composer-input").click
|
||||
find(".send-btn").click
|
||||
|
||||
expect(page).to have_content(
|
||||
I18n.t("js.chat.mention_warning.cannot_see.one", username: other_user.username),
|
||||
@ -51,7 +53,8 @@ RSpec.describe "JIT messages", type: :system, js: true do
|
||||
|
||||
it "displays a mention warning" do
|
||||
chat.visit_channel(channel_1)
|
||||
channel.send_message("hi @#{group_1.name}")
|
||||
find(".chat-composer-input").fill_in(with: "hi @#{group_1.name}")
|
||||
find(".send-btn").click
|
||||
|
||||
expect(page).to have_content(
|
||||
I18n.t("js.chat.mention_warning.group_mentions_disabled.one", group_name: group_1.name),
|
||||
|
||||
@ -12,7 +12,7 @@ module PageObjects
|
||||
end
|
||||
|
||||
def click_send_message
|
||||
find(".chat-composer .send-btn:enabled").click
|
||||
find(".chat-composer .send-btn").click
|
||||
end
|
||||
|
||||
def message_by_id(id)
|
||||
|
||||
@ -173,14 +173,15 @@ 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
|
||||
|
||||
clip_text = copy_messages_to_clipboard(message_1)
|
||||
click_selection_button("cancel")
|
||||
chat_channel_page.send_message(clip_text)
|
||||
chat_channel_page.fill_composer(clip_text)
|
||||
chat_channel_page.click_send_message
|
||||
|
||||
expect(page).to have_selector(".chat-message", count: 2)
|
||||
|
||||
|
||||
@ -245,7 +245,6 @@ RSpec.configure do |config|
|
||||
allow: [Webdrivers::Chromedriver.base_url]
|
||||
)
|
||||
|
||||
Capybara.threadsafe = true
|
||||
Capybara.disable_animation = true
|
||||
|
||||
Capybara.configure do |capybara_config|
|
||||
|
||||
Reference in New Issue
Block a user