DEV: Skip chat transcript spec (#24819)

This commit is contained in:
Jan Cernik 2023-12-11 13:09:22 -03:00 committed by GitHub
parent 695ec99cea
commit 4904c2f11b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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)