X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/28c6bbeeed6b228d51666914bcd845d05500107e..b1f65fcd4fa5fca5400f63fa25823fef6229a158:/apps/workbench/test/integration/pipeline_instances_test.rb diff --git a/apps/workbench/test/integration/pipeline_instances_test.rb b/apps/workbench/test/integration/pipeline_instances_test.rb index 17d8cda135..5089d27366 100644 --- a/apps/workbench/test/integration/pipeline_instances_test.rb +++ b/apps/workbench/test/integration/pipeline_instances_test.rb @@ -382,11 +382,13 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest ['active', 'no such match', 0, 0], ].each do |user, search_filter, expected_min, expected_max| test "scroll pipeline instances page for #{user} with search filter #{search_filter} - and expect more than #{expected_min} and less than #{expected_max}" do + and expect #{expected_min} <= found_items <= #{expected_max}" do visit page_with_token(user, "/pipeline_instances") if search_filter find('.recent-pipeline-instances-filterable-control').set(search_filter) + # Wait for 250ms debounce timer (see filterable.js) + sleep 0.350 wait_for_ajax end