summaryrefslogtreecommitdiff
path: root/spec/features
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2017-10-10 10:19:20 +0200
committerTim Zallmann <tzallmann@gitlab.com>2017-10-30 10:27:46 +0100
commitce75de08f076ced6c68dfcf90e92254123dfdf48 (patch)
treeea02e7e52ef0ea25ef672f9caa2d7db2ba62248b /spec/features
parent4731eba4c3f1d83296fed47bdbf8675e150c01ca (diff)
downloadgitlab-ce-ce75de08f076ced6c68dfcf90e92254123dfdf48.tar.gz
Fixes for Tests
Diffstat (limited to 'spec/features')
-rw-r--r--spec/features/projects/pipelines/pipeline_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/projects/pipelines/pipeline_spec.rb b/spec/features/projects/pipelines/pipeline_spec.rb
index acbc5b046e6..70f476382a8 100644
--- a/spec/features/projects/pipelines/pipeline_spec.rb
+++ b/spec/features/projects/pipelines/pipeline_spec.rb
@@ -67,7 +67,7 @@ describe 'Pipeline', :js do
it 'shows a running icon and a cancel action for the running build' do
page.within('#ci-badge-deploy') do
expect(page).to have_selector('.js-ci-status-icon-running')
- expect(page).to have_selector('.js-icon-action-cancel')
+ expect(page).to have_selector('.js-icon-cancel')
expect(page).to have_content('deploy')
end
end
@@ -87,7 +87,7 @@ describe 'Pipeline', :js do
end
page.within('#ci-badge-build .ci-action-icon-container') do
- expect(page).to have_selector('.js-icon-action-retry')
+ expect(page).to have_selector('.js-icon-retry')
end
end
@@ -106,7 +106,7 @@ describe 'Pipeline', :js do
end
page.within('#ci-badge-test .ci-action-icon-container') do
- expect(page).to have_selector('.js-icon-action-retry')
+ expect(page).to have_selector('.js-icon-retry')
end
end
@@ -125,7 +125,7 @@ describe 'Pipeline', :js do
end
page.within('#ci-badge-manual-build .ci-action-icon-container') do
- expect(page).to have_selector('.js-icon-action-play')
+ expect(page).to have_selector('.js-icon-play')
end
end