[ARVADOS] updated: f9ba8a730dbc1a457485886aa4591991e9dbbf0d
git at public.curoverse.com
git at public.curoverse.com
Tue Nov 18 13:13:47 EST 2014
Summary of changes:
apps/workbench/test/integration/pipeline_instances_test.rb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
via f9ba8a730dbc1a457485886aa4591991e9dbbf0d (commit)
from 9f52191b13196b1926f7b8b0c7c35aac56e02198 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit f9ba8a730dbc1a457485886aa4591991e9dbbf0d
Author: Tom Clegg <tom at curoverse.com>
Date: Tue Nov 18 12:39:50 2014 -0500
4363: Fix flaky test case (race with filterable.js debounce timer).
diff --git a/apps/workbench/test/integration/pipeline_instances_test.rb b/apps/workbench/test/integration/pipeline_instances_test.rb
index 17d8cda..5089d27 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
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list