diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-11-19 08:27:35 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-11-19 08:27:35 +0000 |
commit | 7e9c479f7de77702622631cff2628a9c8dcbc627 (patch) | |
tree | c8f718a08e110ad7e1894510980d2155a6549197 /spec/features/alert_management_spec.rb | |
parent | e852b0ae16db4052c1c567d9efa4facc81146e88 (diff) | |
download | gitlab-ce-13.6.0-rc42.tar.gz |
Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42
Diffstat (limited to 'spec/features/alert_management_spec.rb')
-rw-r--r-- | spec/features/alert_management_spec.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/features/alert_management_spec.rb b/spec/features/alert_management_spec.rb index 2989f72e356..3322c9c574f 100644 --- a/spec/features/alert_management_spec.rb +++ b/spec/features/alert_management_spec.rb @@ -41,21 +41,6 @@ RSpec.describe 'Alert management', :js do expect(page).to have_content(environment.name) end end - - context 'when expose_environment_path_in_alert_details feature flag is disabled' do - before do - stub_feature_flags(expose_environment_path_in_alert_details: false) - end - - it 'does not show the environment name' do - visit(details_project_alert_management_path(project, alert)) - - within('.alert-management-details-table') do - expect(page).to have_content(alert.title) - expect(page).not_to have_content(environment.name) - end - end - end end end end |