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/features/users/rss_spec.rb')
-rw-r--r--spec/features/users/rss_spec.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/features/users/rss_spec.rb b/spec/features/users/rss_spec.rb
index bc37c9941ce..39b6d049e43 100644
--- a/spec/features/users/rss_spec.rb
+++ b/spec/features/users/rss_spec.rb
@@ -6,6 +6,10 @@ RSpec.describe 'User RSS', feature_category: :user_profile do
let(:user) { create(:user) }
let(:path) { user_path(create(:user)) }
+ before do
+ stub_feature_flags(user_profile_overflow_menu_vue: false)
+ end
+
context 'when signed in' do
before do
sign_in(user)
@@ -22,4 +26,8 @@ RSpec.describe 'User RSS', feature_category: :user_profile do
it_behaves_like "it has an RSS button without a feed token"
end
+
+ # TODO: implement tests before the FF "user_profile_overflow_menu_vue" is turned on
+ # See: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/122971
+ # Related Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/416974
end