another attempt to prevent failures because of visionmedia/mocha#1292

This commit is contained in:
Spencer Alger
2014-07-30 10:10:41 -07:00
parent 5ade73c8bb
commit 00a721a112
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ module.exports = function (branch) {
// before running any tests... // before running any tests...
before(function (done) { before(function (done) {
// start our personal ES Server // start our personal ES Server
this.timeout(0); this.timeout(5 * 60 * 1000);
clientManager.create(branch, done); clientManager.create(branch, done);
}); });

View File

@ -364,7 +364,7 @@ describe('Http Connector', function () {
} }
it('destroys any connections created', function (done) { it('destroys any connections created', function (done) {
this.timeout(0); this.timeout(5 * 60 * 1000);
var cp = require('child_process'); var cp = require('child_process');
var path = require('path'); var path = require('path');
var fixture = _.partial(path.join, __dirname, '../../fixtures'); var fixture = _.partial(path.join, __dirname, '../../fixtures');