Skip to content

Commit 6337df4

Browse files
author
John Haley
committed
Increase timeouts for tests to help slower CI
1 parent cf3bdb1 commit 6337df4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/runner.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ before(function() {
4343
});
4444

4545
beforeEach(function() {
46+
this.timeout(4000);
4647
return exec("git clean -xdf", {cwd: workdirPath})
4748
.then(function() {
4849
return exec("git checkout master", {cwd: workdirPath});

test/tests/revwalk.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe("Revwalk", function() {
1111
var reposPath = local("../repos/workdir");
1212

1313
// Set a reasonable timeout here now that our repository has grown.
14-
this.timeout(60000);
14+
this.timeout(120000);
1515

1616
beforeEach(function() {
1717
var test = this;

0 commit comments

Comments
 (0)