Fix broken spec for Merge request > Revert modal

This commit is contained in:
Douglas Barbosa Alexandre 2019-04-03 22:08:19 -03:00
parent 43f9d5d755
commit 942fd15284
No known key found for this signature in database
GPG Key ID: F1E98EF6393565A0
1 changed files with 4 additions and 2 deletions

View File

@ -17,12 +17,14 @@ describe 'Merge request > User sees revert modal', :js do
end
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
it 'closes the revert modal with escape keypress' do
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