From 8e1d049e6bd93470a104e9152fda03bfecfefb3d Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Mon, 26 Jun 2023 16:52:09 +0800 Subject: [PATCH] DEV: Skip flaky chat system tests (#22275) The skipped tests are flaky even when running locally. This is being tracked internally and will be unskipped once it is fixed. --- plugins/chat/spec/system/message_thread_indicator_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/chat/spec/system/message_thread_indicator_spec.rb b/plugins/chat/spec/system/message_thread_indicator_spec.rb index bcc748bb0b6..1a35a286077 100644 --- a/plugins/chat/spec/system/message_thread_indicator_spec.rb +++ b/plugins/chat/spec/system/message_thread_indicator_spec.rb @@ -126,7 +126,7 @@ describe "Thread indicator for chat messages", type: :system do ) end - it "shows an excerpt of the last reply in the thread" do + xit "shows an excerpt of the last reply in the thread" do chat_page.visit_channel(channel) excerpt_text = thread_excerpt(thread_1.last_reply) @@ -136,7 +136,7 @@ describe "Thread indicator for chat messages", type: :system do ).to have_content(excerpt_text) end - it "updates the last reply excerpt and participants when a new message is added to the thread" do + xit "updates the last reply excerpt and participants when a new message is added to the thread" do new_user = Fabricate(:user) chat_system_user_bootstrap(user: new_user, channel: channel) original_last_reply = thread_1.replies.last