Ensure the tests work with other instances installed

This commit is contained in:
Johannes Zellner 2018-03-26 12:36:09 +02:00
parent 7fd766b348
commit b86f9c7a20
1 changed files with 2 additions and 2 deletions

View File

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