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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-03 21:10:18 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-03 21:10:18 +0300
commit3413ab248287b19b1d2cd1f78d957096546e8c37 (patch)
treeb59d4bddbee10eceebbe7a085c3d660307d03ca5 /spec/features/admin
parentdbe0e5676267eb142dd8d81e4c881c997cb96962 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/admin')
-rw-r--r--spec/features/admin/admin_settings_spec.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/spec/features/admin/admin_settings_spec.rb b/spec/features/admin/admin_settings_spec.rb
index 7c6f2dca7b8..b1da1d556a0 100644
--- a/spec/features/admin/admin_settings_spec.rb
+++ b/spec/features/admin/admin_settings_spec.rb
@@ -662,15 +662,19 @@ RSpec.describe 'Admin updates settings', feature_category: :shared do
end
context 'Network page' do
+ before do
+ stub_feature_flags(deny_all_requests: false)
+ end
+
it 'changes Outbound requests settings' do
visit network_admin_application_settings_path
page.within('.as-outbound') do
- check 'Allow requests to the local network from web hooks and services'
+ check 'Allow requests to the local network from webhooks and integrations'
# Enabled by default
uncheck 'Allow requests to the local network from system hooks'
# Enabled by default
- uncheck 'Enforce DNS rebinding attack protection'
+ uncheck 'Enforce DNS-rebinding attack protection'
click_button 'Save changes'
end