From 4904c2f11b218d3cc48d8e6e3e77defd54483aa7 Mon Sep 17 00:00:00 2001 From: Jan Cernik <66427541+jancernik@users.noreply.github.com> Date: Mon, 11 Dec 2023 13:09:22 -0300 Subject: [PATCH] DEV: Skip chat transcript spec (#24819) --- plugins/chat/spec/lib/chat/transcript_service_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/chat/spec/lib/chat/transcript_service_spec.rb b/plugins/chat/spec/lib/chat/transcript_service_spec.rb index 72a98447db0..d980d0de659 100644 --- a/plugins/chat/spec/lib/chat/transcript_service_spec.rb +++ b/plugins/chat/spec/lib/chat/transcript_service_spec.rb @@ -257,7 +257,7 @@ describe Chat::TranscriptService do MARKDOWN end - it "generates reaction data for threaded messages" do + xit "generates reaction data for threaded messages" do thread = Fabricate(:chat_thread, channel: channel) thread_om = Fabricate( @@ -329,7 +329,7 @@ describe Chat::TranscriptService do MARKDOWN end - it "generates a chat transcript for threaded messages" do + xit "generates a chat transcript for threaded messages" do thread = Fabricate(:chat_thread, channel: channel) thread_om = Fabricate( @@ -367,7 +367,7 @@ describe Chat::TranscriptService do MARKDOWN end - it "doesn't add thread info for threads with no replies" do + xit "doesn't add thread info for threads with no replies" do thread = Fabricate(:chat_thread, channel: channel) thread_om = Fabricate( @@ -412,7 +412,7 @@ describe Chat::TranscriptService do MARKDOWN end - it "generates the correct markdown for multiple threads" do + xit "generates the correct markdown for multiple threads" do channel_message_1 = Fabricate(:chat_message, user: user1, chat_channel: channel, message: "I need ideas") thread_1 = Fabricate(:chat_thread, channel: channel)