set timeout to 0

This commit is contained in:
Girish Ramakrishnan 2016-04-01 22:37:48 -07:00
parent bf1dbfe84b
commit dc2f70a519
2 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,8 @@ require('colors');
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
describe('Revert fake release', function () {
this.timeout(0);
it('can revert the fake release from staging', function () {
execSync(__dirname + '/../../release/release revert --env staging', { stdio: [ null, process.stdout, process.stderr ] });
});

View File

@ -43,6 +43,8 @@ describe('Cleanup old cloudrons', function () {
});
describe('Fake release', function () {
this.timeout(0);
it('can release a fake version to staging', function () {
execSync(__dirname + '/../../release/release rerelease --env staging', { stdio: [ null, process.stdout, process.stderr ] });
});