From b95951937a991c9d575a08ebcb32852f9a6f7e0a Mon Sep 17 00:00:00 2001 From: "girish@cloudron.io" Date: Tue, 26 Jan 2016 12:33:53 -0800 Subject: [PATCH] actually check if app is healthy --- cloudron.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cloudron.js b/cloudron.js index 9999aa9..b03d589 100644 --- a/cloudron.js +++ b/cloudron.js @@ -108,6 +108,7 @@ Cloudron.prototype.waitForApp = function (appId) { } assert.strictEqual(res.body.installationState, 'installed'); assert.strictEqual(res.body.runState, 'running'); + assert.strictEqual(res.body.health, 'healthy'); return res.body; };