Johannes Zellner 8 éve
szülő
commit
4210b93597
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      test/test.js

+ 2 - 2
test/test.js

@@ -39,7 +39,7 @@ describe('Application life cycle test SSO', function () {
         done();
     });
 
-    var LOCATION = 'taigatest';
+    var LOCATION = 'test';
     var TEST_TIMEOUT = 50000;
     var PROJECT_NAME = 'testproject';
     var PROJECT_DESCRIPTION = 'testdescription';
@@ -151,7 +151,7 @@ describe('Application life cycle test SSO', function () {
 
     it('move to different location', function () {
         browser.manage().deleteAllCookies();
-        execSync('cloudron install --location ' + LOCATION + '2 --app ' + app.id, { 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');