summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/bin.js
blob: ee4e1ff28c4827be5b8a9f44201ecb3c7fd483d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var path = require("path")
var test = require("tap").test
var common = require("../common-tap.js")
var opts = { cwd: __dirname }
var binDir = "../../node_modules/.bin"
var fixture = path.resolve(__dirname, binDir)

test('npm bin', function (t) {
  common.npm(["bin"], opts, function (err, code, stdout, stderr) {
    t.ifError(err, "bin ran without issue")
    t.notOk(stderr, "should have no stderr")
    t.equal(code, 0, "exit ok")
    var res = path.resolve(stdout)
    t.equal(res, fixture + "\n")
    t.end()
  })
})