Skip to content

Commit 8784b08

Browse files
committed
Fix remote fetch test
1 parent 7c880b1 commit 8784b08

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

test/tests/remote.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,20 +125,15 @@ describe("Remote", function() {
125125
});
126126
});
127127

128-
it.skip("can fetch from all remotes", function() {
128+
it("can fetch from all remotes", function() {
129129
// Set a reasonable timeout here for the fetchAll test
130130
this.timeout(15000);
131131

132132
return this.repository.fetchAll({
133133
credentials: function(url, userName) {
134-
console.log("a\n\n\n\n\n");
135134
return NodeGit.Cred.sshKeyFromAgent(userName);
136-
},
137-
certificateCheck: function() {
138-
console.log("b\n\n\n\n\n");
139-
return 1;
140135
}
141-
});
136+
}, true);
142137
});
143138

144139
});

0 commit comments

Comments
 (0)