Closes MR check out branch modal with escape

This commit is contained in:
Jacopo 2018-05-18 17:10:26 +02:00
parent 2eb8099fb7
commit 7af283c74d
3 changed files with 30 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#modal_merge_info.modal
#modal_merge_info.modal{ tabindex: '-1' }
.modal-dialog
.modal-content
.modal-header

View File

@ -0,0 +1,5 @@
---
title: Closes MR check out branch modal with escape
merge_request: Jacopo Beschi @jacopo-beschi
author: 19050
type: added

View File

@ -0,0 +1,24 @@
require 'rails_helper'
describe 'Merge request > User sees Check out branch modal', :js do
let(:project) { create(:project, :public, :repository) }
let(:user) { project.creator }
let(:merge_request) { create(:merge_request, source_project: project) }
before do
sign_in(user)
visit project_merge_request_path(project, merge_request)
wait_for_requests
click_button('Check out branch')
end
it 'shows the check out branch modal' do
expect(page).to have_content('Check out, review, and merge locally')
end
it 'closes the check out branch model with Escape keypress' do
find('#modal_merge_info').send_keys(:escape)
expect(page).not_to have_content('Check out, review, and merge locally')
end
end