Commit ca9033bd authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Find the nothing-here-block before asserting page content when on explore page of shortcuts_spec.rb

parent 9b03ed0a
require 'spec_helper'
feature 'Dashboard shortcuts', feature: true, js: true do
feature 'Dashboard shortcuts', :feature, :js do
context 'logged in' do
before do
login_as :user
......@@ -8,21 +8,21 @@ feature 'Dashboard shortcuts', feature: true, js: true do
end
scenario 'Navigate to tabs' do
find('body').native.send_keys([:shift, 'P'])
check_page_title('Projects')
find('body').native.send_key([:shift, 'I'])
find('body').send_key([:shift, 'I'])
check_page_title('Issues')
find('body').native.send_key([:shift, 'M'])
find('body').send_key([:shift, 'M'])
check_page_title('Merge Requests')
find('body').native.send_keys([:shift, 'T'])
find('body').send_keys([:shift, 'T'])
check_page_title('Todos')
find('body').send_keys([:shift, 'P'])
check_page_title('Projects')
end
end
......@@ -32,21 +32,24 @@ feature 'Dashboard shortcuts', feature: true, js: true do
end
scenario 'Navigate to tabs' do
find('body').native.send_keys([:shift, 'P'])
expect(page).to have_content('No projects found')
find('body').native.send_keys([:shift, 'G'])
find('body').send_keys([:shift, 'G'])
find('.nothing-here-block')
expect(page).to have_content('No public groups')
find('body').native.send_keys([:shift, 'S'])
find('body').send_keys([:shift, 'S'])
find('.nothing-here-block')
expect(page).to have_selector('.snippets-list-holder')
find('body').send_keys([:shift, 'P'])
find('.nothing-here-block')
expect(page).to have_content('No projects found')
end
end
def check_page_title(title)
expect(find('.header-content .title')).to have_content(title)
end
end
end
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment