Skip to content

Commit

Permalink
change these meta clicks
Browse files Browse the repository at this point in the history
  • Loading branch information
johrstrom committed Jan 8, 2024
1 parent 7738b3f commit 741c916
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/dashboard/test/system/remote_files_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class RemoteFilesTest < ApplicationSystemTestCase
# select dir to move
visit files_url('alias_remote', '/bucket')
%w(app config manifest.yml).each do |f|
find('a', exact_text: f).ancestor('tr').click(:meta)
find('a', exact_text: f).ancestor('tr').find('input[type="checkbox"]').click
end
assert_selector '.selected', count: 3

Expand Down Expand Up @@ -231,7 +231,7 @@ class RemoteFilesTest < ApplicationSystemTestCase
# select dir to move
visit files_url('extra_remote', dir)
%w(app config manifest.yml).each do |f|
find('a', exact_text: f).ancestor('tr').click(:meta)
find('a', exact_text: f).ancestor('tr').find('input[type="checkbox"]').click
end
assert_selector '.selected', count: 3

Expand Down Expand Up @@ -271,8 +271,8 @@ class RemoteFilesTest < ApplicationSystemTestCase

# select dir to move
visit files_url('alias_remote', '/bucket')
find('a', exact_text: 'app').ancestor('tr').click(:meta)
find('a', exact_text: 'foo.txt').ancestor('tr').click(:meta)
find('a', exact_text: 'app').ancestor('tr').find('input[type="checkbox"]').click
find('a', exact_text: 'foo.txt').ancestor('tr').find('input[type="checkbox"]').click
find('#delete-btn').click
find('button.swal2-confirm').click

Expand Down

0 comments on commit 741c916

Please sign in to comment.