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/ci/editor_spec.rb')
-rw-r--r--spec/features/projects/ci/editor_spec.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/spec/features/projects/ci/editor_spec.rb b/spec/features/projects/ci/editor_spec.rb
index adaa5e48967..22cc5c67987 100644
--- a/spec/features/projects/ci/editor_spec.rb
+++ b/spec/features/projects/ci/editor_spec.rb
@@ -4,6 +4,7 @@ require 'spec_helper'
RSpec.describe 'Pipeline Editor', :js, feature_category: :pipeline_composition do
include Features::SourceEditorSpecHelpers
+ include ListboxHelpers
let(:project) { create(:project_empty_repo, :public) }
let(:user) { create(:user) }
@@ -216,12 +217,13 @@ RSpec.describe 'Pipeline Editor', :js, feature_category: :pipeline_composition d
def switch_to_branch(branch)
# close button for the popover
find('[data-testid="close-button"]').click
- find('[data-testid="branch-selector"]').click
page.within '[data-testid="branch-selector"]' do
- click_button branch
- wait_for_requests
+ toggle_listbox
+ select_listbox_item(branch, exact_text: true)
end
+
+ wait_for_requests
end
before do