We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796db68 commit 9c68d76Copy full SHA for 9c68d76
test/tests/clone.js
@@ -25,18 +25,11 @@ describe("Clone", function() {
25
});
26
27
28
- it.skip("can clone with http", function() {
+ it("can clone with http", function() {
29
var test = this;
30
- var url = "http://github.com/nodegit/test.git";
31
- var opts = {
32
- remoteCallbacks: {
33
- certificateCheck: function() {
34
- return 1;
35
- }
36
37
- };
+ var url = "http://git.tbranyen.com/smart/site-content";
38
39
- return Clone.clone(url, clonePath, opts).then(function(repo) {
+ return Clone.clone(url, clonePath).then(function(repo) {
40
assert.ok(repo instanceof Repository);
41
test.repository = repo;
42
0 commit comments