From 4b4560e1782362f7fa50851d114bc9d7acdcdcc1 Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Wed, 24 May 2017 20:28:54 +0200 Subject: [PATCH] Added --wait for reconfigure in test --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index fda55de..3a53752 100644 --- a/test/test.js +++ b/test/test.js @@ -169,7 +169,7 @@ describe('Application life cycle test', function () { it('move to different location', function () { browser.manage().deleteAllCookies(); - execSync('cloudron configure --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); + execSync('cloudron configure --wait --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); var inspect = JSON.parse(execSync('cloudron inspect')); app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0]; expect(app).to.be.an('object');