60 lines
1.4 KiB
Ruby
60 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'Multi-file editor new file', :js do
|
|
let(:user) { create(:user) }
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
before do
|
|
project.add_maintainer(user)
|
|
sign_in(user)
|
|
|
|
visit project_path(project)
|
|
|
|
wait_for_requests
|
|
|
|
click_link('Web IDE')
|
|
|
|
wait_for_requests
|
|
end
|
|
|
|
after do
|
|
set_cookie('new_repo', 'false')
|
|
end
|
|
|
|
it 'creates file in current directory' do
|
|
first('.ide-tree-actions button').click
|
|
|
|
page.within('.modal') do
|
|
find('.form-control').set('file name')
|
|
|
|
click_button('Create file')
|
|
end
|
|
|
|
wait_for_requests
|
|
|
|
find('.js-ide-commit-mode').click
|
|
|
|
# Compact mode depends on the size of window. If it is shorter than MAX_WINDOW_HEIGHT_COMPACT,
|
|
# (as it is with CHROME_HEADLESS=0), this initial commit button will exist. Otherwise, if it is
|
|
# taller (as it is by default with chrome headless) then the button will not exist.
|
|
if page.has_css?('.qa-begin-commit-button')
|
|
find('.qa-begin-commit-button').click
|
|
end
|
|
|
|
fill_in('commit-message', with: 'commit message ide')
|
|
|
|
find(:css, ".js-ide-commit-new-mr input").set(false)
|
|
|
|
page.within '.multi-file-commit-form' do
|
|
click_button('Commit')
|
|
|
|
wait_for_requests
|
|
end
|
|
|
|
find('.js-ide-edit-mode').click
|
|
|
|
expect(page).to have_content('file name')
|
|
end
|
|
end
|