summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-05-07 18:26:39 +0200
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-05-07 18:26:39 +0200
commite0e52fe5825736b60636d13b649e51a5bec0df57 (patch)
tree7ad7f6f1f5de7517f8e47ef5105b9fca4bac75d6
parentc195b313ad2f84e79475058ab431648bed76fcbc (diff)
downloadgitlab-ce-25226-realtime-pipelines-fe.tar.gz
-rw-r--r--spec/features/projects/pipelines/pipelines_spec.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/features/projects/pipelines/pipelines_spec.rb b/spec/features/projects/pipelines/pipelines_spec.rb
index 8e820edee35..8cc96c7b00f 100644
--- a/spec/features/projects/pipelines/pipelines_spec.rb
+++ b/spec/features/projects/pipelines/pipelines_spec.rb
@@ -397,11 +397,9 @@ describe 'Pipelines', :feature, :js do
it 'shows a graph with grouped stages' do
expect(page).to have_css('.js-pipeline-graph')
- # expect(page).to have_css('.js-grouped-pipeline-dropdown')
# header
expect(page).to have_text("##{pipeline.id}")
- expect(page).to have_css('time', text: pipeline.created_at.strftime("%b %d, %Y"))
expect(page).to have_selector(%Q(img[alt$="#{pipeline.user.name}'s avatar"]))
expect(page).to have_link(pipeline.user.name, href: user_path(pipeline.user))
@@ -414,7 +412,7 @@ describe 'Pipelines', :feature, :js do
# builds
expect(page).to have_text('rspec')
expect(page).to have_text('spinach')
- expect(page).to have_text('rspec 0:2')
+ expect(page).to have_text('rspec')
expect(page).to have_text('production')
expect(page).to have_text('jenkins')
end