summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-02-28 17:31:11 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-02-28 17:31:11 +0000
commitee631557ab139461d8ec4f12ba33a61e83b8e307 (patch)
tree29d0c6531d54200e20d75bae8bff2880e4589e56
parentbbd8860da2ab1d3c181ee27761d6e1ed4ba8f1b4 (diff)
parent02f0b90ca1773439682883b6134c53dbebf3543c (diff)
downloadgitlab-ce-ee631557ab139461d8ec4f12ba33a61e83b8e307.tar.gz
Merge branch 'sh-issue-43636' into 'master'
Remove pipelines mini graph spec that wasn't actually testing anything Closes #43636 See merge request gitlab-org/gitlab-ce!17428
-rw-r--r--spec/features/projects/pipelines/pipelines_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/features/projects/pipelines/pipelines_spec.rb b/spec/features/projects/pipelines/pipelines_spec.rb
index 37a06b65481..3a8e7c05cc4 100644
--- a/spec/features/projects/pipelines/pipelines_spec.rb
+++ b/spec/features/projects/pipelines/pipelines_spec.rb
@@ -367,23 +367,6 @@ describe 'Pipelines', :js do
expect(build.reload).to be_canceled
end
end
-
- context 'dropdown jobs list' do
- it 'should keep the dropdown open when the user ctr/cmd + clicks in the job name' do
- find('.js-builds-dropdown-button').click
- dropdown_item = find('.mini-pipeline-graph-dropdown-item').native
-
- %i(alt control).each do |meta_key|
- page.driver.browser.action
- .key_down(meta_key)
- .click(dropdown_item)
- .key_up(meta_key)
- .perform
- end
-
- expect(page).to have_selector('.js-ci-action-icon')
- end
- end
end
context 'with pagination' do