ROLL - try increasing wait timeout to get tests running in try. draft
authorMichael Comella <michael.l.comella@gmail.com>
Thu, 24 Mar 2016 15:51:24 -0700
changeset 344595 edfa8a106d6e8868c96147a554be3551c08f44ba
parent 344591 addfc9387131c2df9fe1c561d7a1dfed661fcea5
child 344596 69c0c16f65d63c934b480cc99c1905c41f27feb0
push id13873
push usermichael.l.comella@gmail.com
push dateThu, 24 Mar 2016 23:15:57 +0000
milestone48.0a1
ROLL - try increasing wait timeout to get tests running in try. MozReview-Commit-ID: 8HkQtLwVa6V
mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/JavascriptBridgeTest.java
--- a/mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/JavascriptBridgeTest.java
+++ b/mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/JavascriptBridgeTest.java
@@ -19,17 +19,17 @@ import org.mozilla.gecko.tests.helpers.N
  *   * Add your javascript file to the base robocop directory (see where `testJavascriptBridge.js` is located)
  *   * In the main test method, call {@link #blockForReadyAndLoadJS(String)} with your javascript file name
  * (don't include the path) or if you're loading a non-harness url, be sure to call {@link GeckoHelper#blockForReady()}
  *   * You can access js calls via the {@link #getJS()} method
  *     - Read {@link JavascriptBridge} javadoc for more information about using the API.
  */
 public class JavascriptBridgeTest extends UITest {
 
-    private static final long WAIT_GET_FROM_JS_MILLIS = 2000;
+    private static final long WAIT_GET_FROM_JS_MILLIS = 10000;
 
     private JavascriptBridge js;
 
     // Feel free to implement additional return types.
     private boolean isAsyncValueSet;
     private String asyncValueStr;
 
     @Override