summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/test/tap/help.js
blob: bc66a92298e00353d61aff2cb4dd29d6b936dc9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
var test = require('tap').test
var common = require('../common-tap')

test('npm food', function (t) {
  common.npm('docz', {}, function (err, code, stdout, stderr) {
    if (err) throw err
    t.equal(code, 1, 'command ran with error')

    t.has(stdout, 'Did you mean this?')

    t.notOk(stderr, 'stderr should be empty')
    t.end()
  })
})

test('npm jet', function (t) {
  common.npm('jet', {}, function (err, code, stdout, stderr) {
    if (err) throw err
    t.equal(code, 1, 'command ran with error')

    t.has(stdout, 'Did you mean one of these?')

    t.notOk(stderr, 'stderr should be empty')
    t.end()
  })
})