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

index.js « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26db16e1f78bafef7e5074df1ef454ca2307045b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const t = require('tap')
const index = require.resolve('../index.js')
const packageIndex = require.resolve('../')
t.equal(index, packageIndex, 'index is main package require() export')
t.throws(() => require(index), {
  message: 'The programmatic API was removed in npm v8.0.0',
})

t.test('loading as main module will load the cli', t => {
  const { spawn } = require('child_process')
  const LS = require('../lib/commands/ls.js')
  const ls = new LS({})
  const p = spawn(process.execPath, [index, 'ls', '-h'])
  const out = []
  p.stdout.on('data', c => out.push(c))
  p.on('close', (code, signal) => {
    t.equal(code, 0)
    t.equal(signal, null)
    t.match(Buffer.concat(out).toString(), ls.usage)
    t.end()
  })
})