|
@@ -139,7 +139,7 @@ describe('Application life cycle test', function () {
|
|
execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
|
execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
|
});
|
|
});
|
|
|
|
|
|
- xit('install app', function () {
|
|
|
|
|
|
+ it('install app', function () {
|
|
execSync('cloudron install --new --wait --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
|
execSync('cloudron install --new --wait --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
|
});
|
|
});
|
|
|
|
|
|
@@ -173,7 +173,7 @@ describe('Application life cycle test', function () {
|
|
it('can check image', checkImage);
|
|
it('can check image', checkImage);
|
|
|
|
|
|
it('can restart app', function (done) {
|
|
it('can restart app', function (done) {
|
|
- execSync('cloudron restart');
|
|
|
|
|
|
+ execSync('cloudron restart --app ' + app.id);
|
|
done();
|
|
done();
|
|
});
|
|
});
|
|
|
|
|