Merge branch '4552-collection-unique-name' closes #4552
[arvados.git] / apps / workbench / test / integration / pipeline_instances_test.rb
index 17d8cda135b40b6327892ccffb489429b3e5ffcd..5089d273660216254a2ad7f8bfe94b94727b228d 100644 (file)
@@ -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