Johannes Zellner 8 лет назад
Родитель
Сommit
3e2ddd45e4
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      test/test.js

+ 2 - 2
test/test.js

@@ -36,7 +36,7 @@ describe('Application life cycle test', function () {
         done();
     });
 
-    var LOCATION = 'nodebbtest';
+    var LOCATION = 'test';
     var TEST_TIMEOUT = parseInt(process.env.TEST_TIMEOUT, 10) || 20000;
     var app;
     var email, token;
@@ -183,7 +183,7 @@ describe('Application life cycle test', function () {
     it('can check image', checkImage);
 
     it('move to different location', function () {
-        execSync('cloudron install --wait --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');