summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/legacy-missing-bindir.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/legacy-missing-bindir.js')
-rw-r--r--deps/npm/test/tap/legacy-missing-bindir.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/deps/npm/test/tap/legacy-missing-bindir.js b/deps/npm/test/tap/legacy-missing-bindir.js
index a55703bebd..2285f8d2a7 100644
--- a/deps/npm/test/tap/legacy-missing-bindir.js
+++ b/deps/npm/test/tap/legacy-missing-bindir.js
@@ -48,8 +48,6 @@ test('missing-bindir', function (t) {
function installCheckAndTest (err, code, stdout, stderr) {
if (err) throw err
- if (stderr) console.error(stderr)
- console.log(stdout)
t.is(code, 0, 'install went ok')
t.is(installedExists('README'), true, 'README')
t.is(installedExists('package.json'), true, 'package.json')
@@ -58,8 +56,6 @@ test('missing-bindir', function (t) {
function removeCheckAndDone (err, code, stdout, stderr) {
if (err) throw err
- console.error(stderr)
- console.log(stdout)
t.is(code, 0, 'remove went ok')
t.done()
}