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

bin.js « commands « lib « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46170e765de8284fd6d6d36026ec601a04bbf612 (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
27
28
29
30
31
32
const t = require('tap')
const { load: loadMockNpm } = require('../../fixtures/mock-npm')
const mockGlobals = require('../../fixtures/mock-globals')

t.test('bin not global', async t => {
  const { npm, joinedOutput, logs } = await loadMockNpm(t)
  await npm.exec('bin', [])
  t.match(joinedOutput(), npm.localBin)
  t.match(logs.error, [])
})

t.test('bin global in env.path', async t => {
  const { npm, joinedOutput, logs } = await loadMockNpm(t, {
    config: { global: true },
  })

  mockGlobals(t, {
    'process.env': { path: npm.globalBin },
  })
  await npm.exec('bin', [])
  t.match(joinedOutput(), npm.globalBin)
  t.match(logs.error, [])
})

t.test('bin not in path', async t => {
  const { npm, joinedOutput, logs } = await loadMockNpm(t, {
    config: { global: true },
  })
  await npm.exec('bin', [])
  t.match(joinedOutput(), npm.globalBin)
  t.match(logs.error, [['bin', '(not in PATH env variable)']])
})