mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 21:20:35 +00:00
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()
|
|
})
|