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