Merge branch '4552-collection-unique-name' closes #4552
[arvados.git] / apps / workbench / test / integration / pipeline_instances_test.rb
index 4aea40858f2a439098b3f9d05eac984d85571d62..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
 
@@ -406,7 +408,8 @@ class PipelineInstancesTest < ActionDispatch::IntegrationTest
       found_count = found_items.count
       if expected_min == expected_max
         assert_equal(true, found_count == expected_min,
-          "Not found expected number of items. Expected at least #{expected_min} and found #{found_count}")
+          "Not found expected number of items. Expected #{expected_min} and found #{found_count}")
+        assert page.has_no_text? 'request failed'
       else
         assert_equal(true, found_count>=expected_min,
           "Found too few items. Expected at least #{expected_min} and found #{found_count}")