Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions test/tests/clone.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,11 @@ describe("Clone", function() {
});
});

it.skip("can clone with http", function() {
it("can clone with http", function() {
var test = this;
var url = "http://github.com/nodegit/test.git";
var opts = {
remoteCallbacks: {
certificateCheck: function() {
return 1;
}
}
};
var url = "http://git.tbranyen.com/smart/site-content";

return Clone.clone(url, clonePath, opts).then(function(repo) {
return Clone.clone(url, clonePath).then(function(repo) {
assert.ok(repo instanceof Repository);
test.repository = repo;
});
Expand Down