From 00b8ce07f39f892a2b372fdb87aa6424d76c4e75 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Wed, 6 Aug 2014 20:14:54 -0700 Subject: [PATCH] runner "is it crashing" timeout increase to 3 secs This fixes the test failure of the 'run' from checkout. (It would be nice if we weren't slowing down the rebuild in 0.9.0, but at least we should ensure that this feature survives.) --- tools/run-app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/run-app.js b/tools/run-app.js index dd76935230..17bf315ba4 100644 --- a/tools/run-app.js +++ b/tools/run-app.js @@ -633,8 +633,9 @@ _.extend(AppRunner.prototype, { while (true) { crashTimer = setTimeout(function () { + console.log("CRASH TIMER") crashCount = 0; - }, 2000); + }, 3000); var runResult = self._runOnce(function () { /* onListen */