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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKat Marchán <kzm@zkat.tech>2018-04-06 19:24:32 +0300
committerKat Marchán <kzm@zkat.tech>2018-12-11 01:55:39 +0300
commit514558e094460fd0284a759c13965b685133b3fe (patch)
tree662babb9958f72edf194b922466e1fec769b65a8 /test
parent2786834c0257b8bb1bbb115f1ce7060abaab2e17 (diff)
view: stop using npm-registry-client
Diffstat (limited to 'test')
-rw-r--r--test/tap/view.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tap/view.js b/test/tap/view.js
index 30ccdb471..a01fa903a 100644
--- a/test/tap/view.js
+++ b/test/tap/view.js
@@ -97,7 +97,7 @@ test('npm view . with no published package', function (t) {
], { cwd: t3dir }, function (err, code, stdout, stderr) {
t.ifError(err, 'view command finished successfully')
t.equal(code, 1, 'exit not ok')
- t.similar(stderr, /version not found/m)
+ t.similar(stderr, /not in the npm registry/m)
t.end()
})
})