DEV: Skip flaky chat transcript specs (#24607)

This commit is contained in:
Jan Cernik 2023-11-28 14:13:25 -03:00 committed by GitHub
parent feb5eda0d1
commit de0c761516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -150,7 +150,7 @@ describe Chat::ChannelArchiveService do
expect(@channel_archive.chat_channel.chat_messages.count).to eq(0)
end
it "creates the correct posts for a channel with messages and threads" do
xit "creates the correct posts for a channel with messages and threads" do
create_messages(2)
create_threaded_messages(6, title: "a new thread")
create_messages(7)

View File

@ -328,7 +328,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(
@ -366,7 +366,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)