diff options
author | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-11-04 15:08:12 -0800 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-11-05 10:35:43 -0800 |
commit | 28ae70ebad8debd8aa7b521a693aa3de89ad84d6 (patch) | |
tree | c5cd9142bbefe8f84c9555e07cafd677530cb7ef /deps/npm/test/tap/repo.js | |
parent | 272aa589af50566a20a491910d4dc40bb3692102 (diff) | |
download | node-new-28ae70ebad8debd8aa7b521a693aa3de89ad84d6.tar.gz |
npm: Upgrade to v2.1.6
Diffstat (limited to 'deps/npm/test/tap/repo.js')
-rw-r--r-- | deps/npm/test/tap/repo.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/deps/npm/test/tap/repo.js b/deps/npm/test/tap/repo.js index bf7b574f86..caae7d3c3f 100644 --- a/deps/npm/test/tap/repo.js +++ b/deps/npm/test/tap/repo.js @@ -33,7 +33,7 @@ test("npm repo underscore", function (t) { '--registry=' + common.registry, '--loglevel=silent', '--browser=' + __dirname + '/_script.sh' - ], opts, function(err, code, stdout, stderr) { + ], opts, function (err, code, stdout, stderr) { t.equal(code, 0, 'exit ok') var res = fs.readFileSync(outFile, 'ascii') s.close() @@ -52,7 +52,7 @@ test('npm repo optimist - github (https://)', function (t) { '--registry=' + common.registry, '--loglevel=silent', '--browser=' + __dirname + '/_script.sh' - ], opts, function(err, code, stdout, stderr) { + ], opts, function (err, code, stdout, stderr) { t.equal(code, 0, 'exit ok') var res = fs.readFileSync(outFile, 'ascii') s.close() @@ -70,7 +70,7 @@ test("npm repo npm-test-peer-deps - no repo", function (t) { '--registry=' + common.registry, '--loglevel=silent', '--browser=' + __dirname + '/_script.sh' - ], opts, function(err, code, stdout, stderr) { + ], opts, function (err, code, stdout, stderr) { t.equal(code, 1, 'exit not ok') s.close() t.end() @@ -85,7 +85,7 @@ test("npm repo test-repo-url-http - non-github (http://)", function (t) { '--registry=' + common.registry, '--loglevel=silent', '--browser=' + __dirname + '/_script.sh' - ], opts, function(err, code, stdout, stderr) { + ], opts, function (err, code, stdout, stderr) { t.equal(code, 0, 'exit ok') var res = fs.readFileSync(outFile, 'ascii') s.close() @@ -103,7 +103,7 @@ test("npm repo test-repo-url-https - non-github (https://)", function (t) { '--registry=' + common.registry, '--loglevel=silent', '--browser=' + __dirname + '/_script.sh' - ], opts, function(err, code, stdout, stderr) { + ], opts, function (err, code, stdout, stderr) { t.equal(code, 0, 'exit ok') var res = fs.readFileSync(outFile, 'ascii') s.close() @@ -121,7 +121,7 @@ test("npm repo test-repo-url-ssh - non-github (ssh://)", function (t) { '--registry=' + common.registry, '--loglevel=silent', '--browser=' + __dirname + '/_script.sh' - ], opts, function(err, code, stdout, stderr) { + ], opts, function (err, code, stdout, stderr) { t.equal(code, 0, 'exit ok') var res = fs.readFileSync(outFile, 'ascii') s.close() |