node/deps/npm/node_modules/hosted-git-info/test/basic.js

10 lines
204 B
JavaScript
Raw Normal View History

"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()
})