Commit 00328abb authored by Matija Čupić's avatar Matija Čupić

Update feature spec to search for Create pipeline button

parent fc42ba6c
...@@ -517,7 +517,7 @@ describe 'Pipelines', :js do ...@@ -517,7 +517,7 @@ describe 'Pipelines', :js do
end end
it 'creates a new pipeline' do it 'creates a new pipeline' do
expect { click_on 'Run pipeline' } expect { click_on 'Create pipeline' }
.to change { Ci::Pipeline.count }.by(1) .to change { Ci::Pipeline.count }.by(1)
expect(Ci::Pipeline.last).to be_web expect(Ci::Pipeline.last).to be_web
...@@ -526,7 +526,7 @@ describe 'Pipelines', :js do ...@@ -526,7 +526,7 @@ describe 'Pipelines', :js do
context 'without gitlab-ci.yml' do context 'without gitlab-ci.yml' do
before do before do
click_on 'Run pipeline' click_on 'Create pipeline'
end end
it { expect(page).to have_content('Missing .gitlab-ci.yml file') } it { expect(page).to have_content('Missing .gitlab-ci.yml file') }
...@@ -539,7 +539,7 @@ describe 'Pipelines', :js do ...@@ -539,7 +539,7 @@ describe 'Pipelines', :js do
click_link 'master' click_link 'master'
end end
expect { click_on 'Run pipeline' } expect { click_on 'Create pipeline' }
.to change { Ci::Pipeline.count }.by(1) .to change { Ci::Pipeline.count }.by(1)
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment