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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/normalize-git-url/test/basic.js')
-rw-r--r--deps/npm/node_modules/normalize-git-url/test/basic.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/deps/npm/node_modules/normalize-git-url/test/basic.js b/deps/npm/node_modules/normalize-git-url/test/basic.js
index 37952d651a1..4b513a5898b 100644
--- a/deps/npm/node_modules/normalize-git-url/test/basic.js
+++ b/deps/npm/node_modules/normalize-git-url/test/basic.js
@@ -59,6 +59,13 @@ test('basic normalization tests', function (t) {
normalize('git+ssh://git@github.com:npm/npm-proto.git#othiym23/organized'),
{ url: 'git@github.com:npm/npm-proto.git', branch: 'othiym23/organized' }
)
-
+ t.same(
+ normalize('git+file:///foo/bar.git'),
+ { url: 'file:///foo/bar.git', branch: 'master' }
+ )
+ t.same(
+ normalize('git+file://C:\\Users\\hello\\testing.git#zkat/windows-files'),
+ { url: 'file://C:\\Users\\hello\\testing.git', branch: 'zkat/windows-files'}
+ )
t.end()
})