diff --git a/test/test.js b/test/test.js index 5af7a18..1e382cb 100755 --- a/test/test.js +++ b/test/test.js @@ -293,7 +293,7 @@ return done(); it('can edit file', editFile); it('can restart app', function (done) { - execSync('cloudron restart --wait'); + execSync('cloudron restart --wait --app ' + app.id); done(); }); @@ -317,7 +317,7 @@ return done(); it('move to different location', function () { //browser.manage().deleteAllCookies(); // commented because of error "'Network.deleteCookie' wasn't found" - execSync('cloudron configure --wait --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); + execSync('cloudron configure --wait --location ' + LOCATION + '2 --app ' + app.id, { 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');