From e190c00bc4976b6ad816c823b65ff094b6615157 Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Fri, 14 Apr 2023 00:06:57 +0200 Subject: [PATCH] DEV: skip flakey chatables controller spec (#21093) --- .../chat/spec/requests/chat/api/chatables_controller_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chat/spec/requests/chat/api/chatables_controller_spec.rb b/plugins/chat/spec/requests/chat/api/chatables_controller_spec.rb index 7d45ec82416..a8c8c39e5f7 100644 --- a/plugins/chat/spec/requests/chat/api/chatables_controller_spec.rb +++ b/plugins/chat/spec/requests/chat/api/chatables_controller_spec.rb @@ -143,7 +143,7 @@ RSpec.describe Chat::Api::ChatablesController do expect(response.parsed_body["direct_message_channels"].count).to eq(0) end - it "does not return DM channels for users who are not in the chat allowed group" do + xit "does not return DM channels for users who are not in the chat allowed group" do group = Fabricate(:group, name: "chatpeeps") SiteSetting.chat_allowed_groups = group.id GroupUser.create(user: user, group: group)