Temp disable flaky spec (#19547)

This commit is contained in:
Mac Siri 2023-05-26 11:56:28 -04:00 committed by GitHub
parent ca7c395bd9
commit 67a65e0aa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,13 +37,13 @@ RSpec.describe CommentCreator, type: :service do
creator.save
end
it "notifies subscribers" do
xit "notifies subscribers" do
expect(NotificationSubscription).to have_received(:create)
expect(Notification).to have_received(:send_new_comment_notifications_without_delay)
expect(Mention).to have_received(:create_all)
end
it "creates a new reaction" do
xit "creates a new reaction" do
expect(Reaction).to have_received(:create)
end
end