summaryrefslogtreecommitdiff
path: root/spec/features/alert_management/alert_management_list_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-06-16 18:25:58 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-16 18:25:58 +0000
commita5f4bba440d7f9ea47046a0a561d49adf0a1e6d4 (patch)
treefb69158581673816a8cd895f9d352dcb3c678b1e /spec/features/alert_management/alert_management_list_spec.rb
parentd16b2e8639e99961de6ddc93909f3bb5c1445ba1 (diff)
downloadgitlab-ce-a5f4bba440d7f9ea47046a0a561d49adf0a1e6d4.tar.gz
Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42
Diffstat (limited to 'spec/features/alert_management/alert_management_list_spec.rb')
-rw-r--r--spec/features/alert_management/alert_management_list_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/features/alert_management/alert_management_list_spec.rb b/spec/features/alert_management/alert_management_list_spec.rb
index 44ed2f3d60c..aeaadacb38d 100644
--- a/spec/features/alert_management/alert_management_list_spec.rb
+++ b/spec/features/alert_management/alert_management_list_spec.rb
@@ -55,4 +55,28 @@ RSpec.describe 'Alert Management index', :js do
it_behaves_like 'alert page with title, filtered search, and table'
end
end
+
+ describe 'managed_alerts_deprecation feature flag' do
+ subject { page }
+
+ before do
+ stub_feature_flags(managed_alerts_deprecation: feature_flag_value)
+ sign_in(developer)
+
+ visit project_alert_management_index_path(project)
+ wait_for_requests
+ end
+
+ context 'feature flag on' do
+ let(:feature_flag_value) { true }
+
+ it { is_expected.to have_pushed_frontend_feature_flags(managedAlertsDeprecation: true) }
+ end
+
+ context 'feature flag off' do
+ let(:feature_flag_value) { false }
+
+ it { is_expected.to have_pushed_frontend_feature_flags(managedAlertsDeprecation: false) }
+ end
+ end
end