git-remote-url
Advanced tools
@@ -13,3 +13,3 @@ 'use strict'; | ||
if ('remote' in config && remote in config.remote && 'url' in config.remote.origin) { | ||
if ('remote' in config && remote in config.remote && 'url' in config.remote[remote]) { | ||
resolve(config.remote[remote].url); | ||
@@ -16,0 +16,0 @@ } else { |
{ | ||
"name": "git-remote-url", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Get a remote URL of a git repository", | ||
@@ -22,2 +22,3 @@ "main": "index.js", | ||
"devDependencies": { | ||
"mocha": "^2.3.3", | ||
"temp": "^0.8.3" | ||
@@ -24,0 +25,0 @@ }, |
# git-remote-url | ||
Get a remote URL of a git repository | ||
[](https://travis-ci.org/marco-c/git-remote-url) | ||
[](https://david-dm.org/marco-c/git-remote-url) | ||
[](https://david-dm.org/marco-c/git-remote-url#info=devDependencies) |
@@ -45,2 +45,17 @@ 'use strict'; | ||
it('returns the correct URLs when there\'s no origin remote', function() { | ||
childProcess.execSync('git init'); | ||
childProcess.execSync('git remote add remote1 https://github.com/marco-c/remote1.git'); | ||
childProcess.execSync('git remote add remote2 https://github.com/marco-c/remote2.git'); | ||
return Promise.all([ | ||
gitRemoteUrl('./', 'remote1').then(function(url) { | ||
assert.equal(url, 'https://github.com/marco-c/remote1.git'); | ||
}), | ||
gitRemoteUrl('./', 'remote2').then(function(url) { | ||
assert.equal(url, 'https://github.com/marco-c/remote2.git'); | ||
}), | ||
]); | ||
}); | ||
it('fails when the directory isn\'t a git repository', function() { | ||
@@ -47,0 +62,0 @@ return gitRemoteUrl('./', 'origin').then(function(url) { |
20589
5.24%81
19.12%7
133.33%2
100%