mirror of https://github.com/nodejs/node.git
10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
|
"use strict"
|
||
|
var HostedGit = require("../index")
|
||
|
var test = require("tap").test
|
||
|
|
||
|
test("basic", function (t) {
|
||
|
t.is(HostedGit.fromUrl("https://google.com"), undefined, "null on failure")
|
||
|
|
||
|
t.end()
|
||
|
})
|