From 39c2dce1f714130fda9c1730bb6441861ff063ff Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 10 Feb 2017 14:21:17 -0800 Subject: [PATCH] Use "configure" instead --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index bde0608..f41a939 100755 --- a/test/test.js +++ b/test/test.js @@ -195,7 +195,7 @@ describe('Application life cycle test', function () { it('move to different location', function () { browser.manage().deleteAllCookies(); - execSync('cloudron install --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); + execSync('cloudron configure --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');