added emulator support to circle.ci

Summary: Closes https://github.com/facebook/react-native/pull/4911

Reviewed By: svcscm

Differential Revision: D2789142

Pulled By: androidtrunkagent

fb-gh-sync-id: 9fd9520c27fc9acb7b139de6843a71ca3f918249
This commit is contained in:
Konstantin Raev
2015-12-24 10:39:19 -08:00
committed by facebook-github-bot-7
parent c972cce405
commit 308612314e
3 changed files with 28 additions and 7 deletions

View File

@@ -36,7 +36,8 @@ public class ReactAppTestActivity extends FragmentActivity implements
private static final String DEFAULT_BUNDLE_NAME = "AndroidTestBundle.js";
private static final int ROOT_VIEW_ID = 8675309;
private static final long IDLE_TIMEOUT_MS = 15000;
// we need a bigger timeout for CI builds because they run on a slow emulator
private static final long IDLE_TIMEOUT_MS = 60000;
private CountDownLatch mLayoutEvent = new CountDownLatch(1);
private @Nullable ReactBridgeIdleSignaler mBridgeIdleSignaler;