Skip to content
Snippets Groups Projects
Verified Commit 248319d7 authored by Mike Greiling's avatar Mike Greiling
Browse files

remove "command" key from test since it only applies on macOS

parent ae1be64b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -364,11 +364,11 @@ describe 'Pipelines', :js do
find('.js-builds-dropdown-button').click
dropdown_item = find('.mini-pipeline-graph-dropdown-item').native
 
%i(control command alt).each do |command|
%i(alt control).each do |meta_key|
page.driver.browser.action
.key_down(:command)
.key_down(meta_key)
.click(dropdown_item)
.key_up(:command)
.key_up(meta_key)
.perform
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment