summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/view.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/view.js')
-rw-r--r--deps/npm/test/tap/view.js25
1 files changed, 16 insertions, 9 deletions
diff --git a/deps/npm/test/tap/view.js b/deps/npm/test/tap/view.js
index c36abfe1f..5d371d630 100644
--- a/deps/npm/test/tap/view.js
+++ b/deps/npm/test/tap/view.js
@@ -32,6 +32,13 @@ test("setup", function (t) {
t.end()
})
+function plugin (server) {
+ server
+ .get("/biscuits")
+ .many()
+ .reply(404, {"error": "version not found"})
+}
+
test("npm view . in global mode", function (t) {
process.chdir(t1dir)
common.npm([
@@ -77,7 +84,7 @@ test("npm view . with no package.json", function(t) {
test("npm view . with no published package", function (t) {
process.chdir(t3dir)
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, "."
@@ -94,7 +101,7 @@ test("npm view . with no published package", function (t) {
test("npm view .", function (t) {
process.chdir(t2dir)
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, "."
@@ -112,7 +119,7 @@ test("npm view .", function (t) {
test("npm view . select fields", function (t) {
process.chdir(t2dir)
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, "."
@@ -130,7 +137,7 @@ test("npm view . select fields", function (t) {
test("npm view .@<version>", function (t) {
process.chdir(t2dir)
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, ".@0.0.0"
@@ -148,7 +155,7 @@ test("npm view .@<version>", function (t) {
test("npm view .@<version> --json", function (t) {
process.chdir(t2dir)
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, ".@0.0.0"
@@ -166,7 +173,7 @@ test("npm view .@<version> --json", function (t) {
})
test("npm view <package name>", function (t) {
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, "underscore"
@@ -183,7 +190,7 @@ test("npm view <package name>", function (t) {
})
test("npm view <package name> --global", function(t) {
- mr(common.port, function(s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, "underscore"
@@ -202,7 +209,7 @@ test("npm view <package name> --global", function(t) {
test("npm view <package name> --json", function(t) {
t.plan(3)
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, "underscore"
@@ -226,7 +233,7 @@ test("npm view <package name> --json", function(t) {
})
test("npm view <package name> <field>", function (t) {
- mr(common.port, function (s) {
+ mr({port : common.port, plugin : plugin}, function (er, s) {
common.npm([
"view"
, "underscore"