gitlab-org--gitlab-foss/spec/features/dashboard/shortcuts_spec.rb
Phil Hughes 518203d5e1 Fixed specs
Updated JS that was causing the hints to appear & then disappear
2017-04-06 18:14:42 -04:00

30 lines
629 B
Ruby

require 'spec_helper'
feature 'Dashboard shortcuts', feature: true, js: true do
before do
login_as :user
visit root_dashboard_path
end
scenario 'Navigate to tabs' do
find('body').native.send_keys([:shift, 'P'])
check_page_title('Projects')
find('body').native.send_key([:shift, 'I'])
check_page_title('Issues')
find('body').native.send_key([:shift, 'M'])
check_page_title('Merge Requests')
find('body').native.send_keys([:shift, 'T'])
check_page_title('Todos')
end
def check_page_title(title)
expect(find('.header-content .title')).to have_content(title)
end
end