From 4fae2574c41f0e2248989b9dac8738d546ea0217 Mon Sep 17 00:00:00 2001 From: Christiaan Van den Poel Date: Thu, 23 Nov 2017 17:34:52 +0100 Subject: initializes the branches dropdown upon invalid entry Added Changelog added feature spec --- spec/features/projects/pipelines/pipelines_spec.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'spec/features/projects/pipelines/pipelines_spec.rb') diff --git a/spec/features/projects/pipelines/pipelines_spec.rb b/spec/features/projects/pipelines/pipelines_spec.rb index 50f8f13d261..a1b1d94ae06 100644 --- a/spec/features/projects/pipelines/pipelines_spec.rb +++ b/spec/features/projects/pipelines/pipelines_spec.rb @@ -500,6 +500,18 @@ describe 'Pipelines', :js do end it { expect(page).to have_content('Missing .gitlab-ci.yml file') } + it 'creates a pipeline after first request failed and a valid gitlab-ci.yml file is available when trying again' do + click_button project.default_branch + + stub_ci_pipeline_to_return_yaml_file + + page.within '.dropdown-menu' do + click_link 'master' + end + + expect { click_on 'Create pipeline' } + .to change { Ci::Pipeline.count }.by(1) + end end end end -- cgit v1.2.1