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

This commit is contained in:
Mike Greiling 2017-10-31 10:50:30 -05:00
parent ae1be64b66
commit 248319d7f4
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
1 changed files with 3 additions and 3 deletions

View File

@ -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