Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/jira_connect/app_descriptor_controller_spec.rb')
-rw-r--r--spec/controllers/jira_connect/app_descriptor_controller_spec.rb17
1 files changed, 1 insertions, 16 deletions
diff --git a/spec/controllers/jira_connect/app_descriptor_controller_spec.rb b/spec/controllers/jira_connect/app_descriptor_controller_spec.rb
index 3c9d495c33c..48b315646de 100644
--- a/spec/controllers/jira_connect/app_descriptor_controller_spec.rb
+++ b/spec/controllers/jira_connect/app_descriptor_controller_spec.rb
@@ -37,8 +37,7 @@ RSpec.describe JiraConnect::AppDescriptorController, feature_category: :integrat
url: 'https://gitlab.com'
},
links: {
- documentation: 'http://test.host/help/integration/jira_development_panel#gitlabcom-1',
- feedback: 'https://gitlab.com/gitlab-org/gitlab/-/issues/413652'
+ documentation: 'http://test.host/help/integration/jira_development_panel#gitlabcom-1'
},
authentication: {
type: 'jwt'
@@ -91,19 +90,5 @@ RSpec.describe JiraConnect::AppDescriptorController, feature_category: :integrat
)
)
end
-
- context 'when feature flag jira_for_cloud_app_feedback_link is disabled' do
- before do
- stub_feature_flags(jira_for_cloud_app_feedback_link: false)
- end
-
- it 'does not include the feedback link' do
- get :show
-
- expect(descriptor[:links]).not_to include(
- feedback: 'https://gitlab.com/gitlab-org/gitlab/-/issues/413652'
- )
- end
- end
end
end