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-11-14 11:41:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-14 11:41:52 +0300
commit585826cb22ecea5998a2c2a4675735c94bdeedac (patch)
tree5b05f0b30d33cef48963609e8a18a4dff260eab3 /spec/features/admin_variables_spec.rb
parentdf221d036e5d0c6c0ee4d55b9c97f481ee05dee8 (diff)
Add latest changes from gitlab-org/gitlab@16-6-stable-eev16.6.0-rc42
Diffstat (limited to 'spec/features/admin_variables_spec.rb')
-rw-r--r--spec/features/admin_variables_spec.rb13
1 files changed, 1 insertions, 12 deletions
diff --git a/spec/features/admin_variables_spec.rb b/spec/features/admin_variables_spec.rb
index 91e7a46849c..caa94209e50 100644
--- a/spec/features/admin_variables_spec.rb
+++ b/spec/features/admin_variables_spec.rb
@@ -13,13 +13,12 @@ RSpec.describe 'Instance variables', :js, feature_category: :secrets_management
sign_in(admin)
gitlab_enable_admin_mode_sign_in(admin)
- stub_feature_flags(ci_variable_drawer: false)
visit page_path
wait_for_requests
end
context 'when ci_variables_pages FF is enabled' do
- it_behaves_like 'variable list', is_admin: true
+ it_behaves_like 'variable list drawer', is_admin: true
it_behaves_like 'variable list pagination', :ci_instance_variable
end
@@ -28,16 +27,6 @@ RSpec.describe 'Instance variables', :js, feature_category: :secrets_management
stub_feature_flags(ci_variables_pages: false)
end
- it_behaves_like 'variable list', is_admin: true
- end
-
- context 'when ci_variable_drawer FF is enabled' do
- before do
- stub_feature_flags(ci_variable_drawer: true)
- visit page_path
- wait_for_requests
- end
-
it_behaves_like 'variable list drawer', is_admin: true
end
end