Added --wait for reconfigure in test

This commit is contained in:
Dennis Schwerdel 2017-05-24 20:28:54 +02:00
parent 45f13f695f
commit 4b4560e178
1 changed files with 1 additions and 1 deletions

View File

@ -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');