Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/tree/create_file_spec.rb')
-rw-r--r--spec/features/projects/tree/create_file_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/features/projects/tree/create_file_spec.rb b/spec/features/projects/tree/create_file_spec.rb
index eba33168006..58ff623c9ae 100644
--- a/spec/features/projects/tree/create_file_spec.rb
+++ b/spec/features/projects/tree/create_file_spec.rb
@@ -36,6 +36,13 @@ describe 'Multi-file editor new file', :js do
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)