summaryrefslogtreecommitdiff
path: root/spec/features/projects/pipelines/pipeline_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/pipelines/pipeline_spec.rb')
-rw-r--r--spec/features/projects/pipelines/pipeline_spec.rb22
1 files changed, 3 insertions, 19 deletions
diff --git a/spec/features/projects/pipelines/pipeline_spec.rb b/spec/features/projects/pipelines/pipeline_spec.rb
index 201caf3bbd3..3350a3aeefc 100644
--- a/spec/features/projects/pipelines/pipeline_spec.rb
+++ b/spec/features/projects/pipelines/pipeline_spec.rb
@@ -25,16 +25,13 @@ describe "Pipelines", feature: true, js: true do
before { visit namespace_project_pipeline_path(project.namespace, project, pipeline) }
- it 'shows a list of builds' do
+ it 'shows the pipeline graph' do
+ expect(page).to have_selector('.pipeline-visualization')
+ expect(page).to have_content('Build')
expect(page).to have_content('Test')
- expect(page).to have_content(@success.id)
expect(page).to have_content('Deploy')
- expect(page).to have_content(@failed.id)
- expect(page).to have_content(@running.id)
- expect(page).to have_content(@external.id)
expect(page).to have_content('Retry failed')
expect(page).to have_content('Cancel running')
- expect(page).to have_link('Play')
end
it 'shows Pipeline tab pane as active' do
@@ -63,7 +60,6 @@ describe "Pipelines", feature: true, js: true do
before { click_on 'Retry failed' }
it { expect(page).not_to have_content('Retry failed') }
- it { expect(page).to have_selector('.retried') }
end
end
@@ -74,19 +70,8 @@ describe "Pipelines", feature: true, js: true do
before { click_on 'Cancel running' }
it { expect(page).not_to have_content('Cancel running') }
- it { expect(page).to have_selector('.ci-canceled') }
end
end
-
- context 'playing manual build' do
- before do
- within '.pipeline-holder' do
- click_link('Play')
- end
- end
-
- it { expect(@manual.reload).to be_pending }
- end
end
describe 'GET /:project/pipelines/:id/builds' do
@@ -166,5 +151,4 @@ describe "Pipelines", feature: true, js: true do
it { expect(@manual.reload).to be_pending }
end
end
-
end