From: Girish Ramakrishnan Date: Sat, 28 Nov 2015 00:13:53 +0000 (-0800) Subject: enable tests X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;ds=sidebyside;h=052333b5c06a749d12cae384f04d8d1e7e0a203a;p=perso%2FImmae%2FProjets%2FNodejs%2FSurfer.git enable tests --- diff --git a/test/test.js b/test/test.js index c0d86d2..9192d7a 100755 --- a/test/test.js +++ b/test/test.js @@ -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);