518203d5e1
Updated JS that was causing the hints to appear & then disappear
30 lines
629 B
Ruby
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
|