forcing the latest version of mocha because of visionmedia/mocha#1292

This commit is contained in:
Spencer Alger
2014-07-30 10:06:49 -07:00
parent 0e05b0f0a1
commit 5ade73c8bb
3 changed files with 3 additions and 3 deletions

View File

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

View File

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