We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf3bdb1 commit 6337df4Copy full SHA for 6337df4
test/runner.js
@@ -43,6 +43,7 @@ before(function() {
43
});
44
45
beforeEach(function() {
46
+ this.timeout(4000);
47
return exec("git clean -xdf", {cwd: workdirPath})
48
.then(function() {
49
return exec("git checkout master", {cwd: workdirPath});
test/tests/revwalk.js
@@ -11,7 +11,7 @@ describe("Revwalk", function() {
11
var reposPath = local("../repos/workdir");
12
13
// Set a reasonable timeout here now that our repository has grown.
14
- this.timeout(60000);
+ this.timeout(120000);
15
16
17
var test = this;
0 commit comments