Commit 1ccf101e authored by Douwe Maan's avatar Douwe Maan

Merge branch 'fix-shortcuts_spec-explore-page-transient-failure' into 'master'

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

See merge request !11250
parents 62c93ab9 8480118d
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_keys([:shift, 'I'])
check_page_title('Issues')
find('body').native.send_key([:shift, 'M'])
find('body').send_keys([: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,17 +32,20 @@ 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
......
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