summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/outdated-git.js
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2014-02-14 10:08:15 -0800
committerisaacs <i@izs.me>2014-02-14 10:08:15 -0800
commit89caae26ba61e2a6db3c76b6deec831444959a13 (patch)
tree1b9696e27c802a492f84ca8716a56ba213835990 /deps/npm/test/tap/outdated-git.js
parent55543d3c45777e2867b86109454e1686e9956c5f (diff)
downloadnode-npm-v1.4.2.tar.gz
npm: upgrade to v1.4.2npm-v1.4.2
Diffstat (limited to 'deps/npm/test/tap/outdated-git.js')
-rw-r--r--deps/npm/test/tap/outdated-git.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/npm/test/tap/outdated-git.js b/deps/npm/test/tap/outdated-git.js
index dda2abccc..933e3b0b4 100644
--- a/deps/npm/test/tap/outdated-git.js
+++ b/deps/npm/test/tap/outdated-git.js
@@ -12,13 +12,14 @@ mkdirp.sync(pkg + "/cache")
test("dicovers new versions in outdated", function (t) {
process.chdir(pkg)
- t.plan(4)
+ t.plan(5)
npm.load({cache: pkg + "/cache", registry: common.registry}, function () {
npm.outdated(function (er, d) {
t.equal('git', d[0][3])
t.equal('git', d[0][4])
t.equal('git://github.com/robertkowalski/foo-private.git', d[0][5])
t.equal('git://user:pass@github.com/robertkowalski/foo-private.git', d[1][5])
+ t.equal('git://github.com/robertkowalski/foo', d[2][5])
})
})
})