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

did-you-mean.js « utils « lib « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15712b665be6eb08d0aeb2e4c695f955392d30f6 (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
33
34
35
36
37
38
const t = require('tap')
const npm = require('../../../lib/npm.js')

const dym = require('../../../lib/utils/did-you-mean.js')
t.test('did-you-mean', t => {
  npm.load(err => {
    t.notOk(err)
    t.test('nistall', async t => {
      const result = await dym(npm, npm.localPrefix, 'nistall')
      t.match(result, 'npm install')
    })
    t.test('sttest', async t => {
      const result = await dym(npm, npm.localPrefix, 'sttest')
      t.match(result, 'npm test')
      t.match(result, 'npm run posttest')
    })
    t.test('npz', async t => {
      const result = await dym(npm, npm.localPrefix, 'npxx')
      t.match(result, 'npm exec npx')
    })
    t.test('qwuijbo', async t => {
      const result = await dym(npm, npm.localPrefix, 'qwuijbo')
      t.match(result, '')
    })
    t.end()
  })
})

t.test('missing bin and script properties', async t => {
  const path = t.testdir({
    'package.json': JSON.stringify({
      name: 'missing-bin',
    }),
  })

  const result = await dym(npm, path, 'nistall')
  t.match(result, 'npm install')
})