summaryrefslogtreecommitdiff
path: root/spec/features/alert_management/alert_management_list_spec.rb
diff options
context:
space:
mode:
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