summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorBen Bodenmiller <bbodenmiller@gmail.com>2019-06-09 01:04:59 -0700
committerBen Bodenmiller <bbodenmiller@gmail.com>2019-06-09 01:04:59 -0700
commit6a4aa3f9be8b31e5d76750d40f15f5fef2c792af (patch)
treeeccc4a00ab59b006723e9083e7e3ed1b0781f009 /spec
parent74511b049743cf543694bb92a8acd7e7586e533d (diff)
downloadgitlab-ce-6a4aa3f9be8b31e5d76750d40f15f5fef2c792af.tar.gz
Clarify that performance bar is not always on
Diffstat (limited to 'spec')
-rw-r--r--spec/features/admin/admin_settings_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/admin/admin_settings_spec.rb b/spec/features/admin/admin_settings_spec.rb
index f9950b5b03f..ba7a6f8f4b9 100644
--- a/spec/features/admin/admin_settings_spec.rb
+++ b/spec/features/admin/admin_settings_spec.rb
@@ -302,22 +302,22 @@ describe 'Admin updates settings' do
group = create(:group)
page.within('.as-performance-bar') do
- check 'Enable the Performance Bar'
+ check 'Enable access to the Performance Bar'
fill_in 'Allowed group', with: group.path
click_on 'Save changes'
end
expect(page).to have_content "Application settings saved successfully"
- expect(find_field('Enable the Performance Bar')).to be_checked
+ expect(find_field('Enable access to the Performance Bar')).to be_checked
expect(find_field('Allowed group').value).to eq group.path
page.within('.as-performance-bar') do
- uncheck 'Enable the Performance Bar'
+ uncheck 'Enable access to the Performance Bar'
click_on 'Save changes'
end
expect(page).to have_content 'Application settings saved successfully'
- expect(find_field('Enable the Performance Bar')).not_to be_checked
+ expect(find_field('Enable access to the Performance Bar')).not_to be_checked
expect(find_field('Allowed group').value).to be_nil
end