mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-18 03:48:35 -05:00
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import path from 'path'
|
|
import { type PnpmError } from '@pnpm/error'
|
|
import { why } from '@pnpm/plugin-commands-listing'
|
|
import { prepare } from '@pnpm/prepare'
|
|
import { REGISTRY_MOCK_PORT } from '@pnpm/registry-mock'
|
|
import execa from 'execa'
|
|
import stripAnsi from 'strip-ansi'
|
|
|
|
const pnpmBin = path.join(__dirname, '../../../pnpm/bin/pnpm.cjs')
|
|
|
|
test('`pnpm why` should fail if no package name was provided', async () => {
|
|
prepare()
|
|
|
|
let err!: PnpmError
|
|
try {
|
|
await why.handler({
|
|
dir: process.cwd(),
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
} catch (_err: any) { // eslint-disable-line
|
|
err = _err
|
|
}
|
|
|
|
expect(err.code).toBe('ERR_PNPM_MISSING_PACKAGE_NAME')
|
|
expect(err.message).toMatch(/`pnpm why` requires the package name/)
|
|
})
|
|
|
|
test('"why" should find non-direct dependency', async () => {
|
|
prepare({
|
|
dependencies: {
|
|
'@pnpm.e2e/dep-of-pkg-with-1-dep': '100.0.0',
|
|
'@pnpm.e2e/pkg-with-1-dep': '100.0.0',
|
|
},
|
|
})
|
|
|
|
await execa('node', [pnpmBin, 'install', '--registry', `http://localhost:${REGISTRY_MOCK_PORT}`])
|
|
|
|
const output = await why.handler({
|
|
dev: false,
|
|
dir: process.cwd(),
|
|
optional: false,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, ['@pnpm.e2e/dep-of-pkg-with-1-dep'])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
|
|
dependencies:
|
|
@pnpm.e2e/dep-of-pkg-with-1-dep 100.0.0
|
|
@pnpm.e2e/pkg-with-1-dep 100.0.0
|
|
└── @pnpm.e2e/dep-of-pkg-with-1-dep 100.0.0`)
|
|
})
|