Commit 7e676b3c authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents abec9d3d 74ace2a4
...@@ -17,12 +17,14 @@ describe 'Merge request > User sees revert modal', :js do ...@@ -17,12 +17,14 @@ describe 'Merge request > User sees revert modal', :js do
end end
it 'shows the revert modal' do it 'shows the revert modal' do
expect(page).to have_content('Revert this merge request') page.within('.modal-header') do
expect(page).to have_content 'Revert this merge request'
end
end end
it 'closes the revert modal with escape keypress' do it 'closes the revert modal with escape keypress' do
find('#modal-revert-commit').send_keys(:escape) find('#modal-revert-commit').send_keys(:escape)
expect(page).not_to have_content('Revert this merge request') expect(page).not_to have_selector('#modal-revert-commit', visible: true)
end end
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