Welcome to mirror list, hosted at ThFree Co, Russian Federation.

basic.js « test « hosted-git-info « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e56ef9a05a0a5786c1c60a830207df027ae83ea8 (plain)
1
2
3
4
5
6
7
8
9
"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()
})