Commit 052333b5 by Girish Ramakrishnan

enable tests

1 parent 9d2701fe
Showing with 3 additions and 3 deletions
......@@ -33,7 +33,7 @@ describe('Application life cycle test', function () {
execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
xit('install app', function () {
it('install app', function () {
execSync('cloudron install --new --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
});
......@@ -74,12 +74,12 @@ describe('Application life cycle test', function () {
});
it('can get the uploaded file', function (done) {
var contents = execSync(__dirname + '/../cli/surfer.js get test/test.js').toString('utf8');
var contents = execSync(__dirname + '/../cli/surfer.js get surfer-test.txt').toString('utf8');
expect(contents).to.be('surfer');
done();
});
xit('uninstall app', function () {
it('uninstall app', function () {
execSync('cloudron uninstall --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
fs.unlinkSync(process.env.HOME + '/.surfer.json');
fs.unlinkSync(testFile);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!