actually check if app is healthy

This commit is contained in:
girish@cloudron.io 2016-01-26 12:33:53 -08:00
parent 261b1ec561
commit b95951937a
1 changed files with 1 additions and 0 deletions

View File

@ -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;
};