We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88580ab commit 633fe2bCopy full SHA for 633fe2b
test/runner.js
@@ -7,7 +7,7 @@ var exec = promisify(function(command, callback) {
7
});
8
9
before(function(done) {
10
- this.timeout(15000);
+ this.timeout(150000);
11
12
var url = "https://github.com/nodegit/nodegit";
13
var done = done.bind(null, null);
test/tests/clone.js
@@ -15,6 +15,9 @@ describe("Clone", function() {
15
var Clone = require("../../lib/clone");
16
var NodeGit = require("../../");
17
18
+ // Set a reasonable timeout here now that our repository has grown.
19
+ this.timeout(15000);
20
+
21
before(function() {
22
return Promise.all([
23
rimraf(http),
0 commit comments