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

bin.js « tap « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55ca894bb1a60f518081d647debdf3b94bde3f73 (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()
  })
})