-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Minor
-
Component/s: acceptance-test-harness
In JunitPluginTest class test, the publish_rest_of_parameterized_tests test method fails because it complains that there is no tests to show when in reality there are some executions. Probably this is because of sync problem. Inspecting the code I have seen:
toggle(test);
elasticSleep(1000); // Try to wait a bit to ajax to fetch the content
assertThat(driver, hasContent(msg));
toggle(test);
The test failure occurs in the first toggle, but as you can see there is an elasticSleep just after, so originally this test had some problems of sync. Probably we need to add an elasticSleep before first toggle as well.