another attempt to prevent failures because of visionmedia/mocha#1292
This commit is contained in:
@ -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);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -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');
|
||||||
|
|||||||
Reference in New Issue
Block a user