mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 02:21:52 -04:00
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import sinon = require('sinon')
|
|
import {
|
|
DeprecationLog,
|
|
installPkgs,
|
|
} from 'supi'
|
|
import tape = require('tape')
|
|
import promisifyTape from 'tape-promise'
|
|
import {prepare, testDefaults} from '../utils'
|
|
|
|
const test = promisifyTape(tape)
|
|
|
|
// TODO: use a smaller package for testing deprecation
|
|
test('reports warning when installing deprecated packages', async (t: tape.Test) => {
|
|
const project = prepare(t)
|
|
|
|
const reporter = sinon.spy()
|
|
|
|
await installPkgs(['jade@1.11.0'], await testDefaults({reporter}))
|
|
|
|
t.ok(reporter.calledWithMatch({
|
|
deprecated: 'Jade has been renamed to pug, please install the latest version of pug instead of jade',
|
|
level: 'warn',
|
|
name: 'pnpm:deprecation',
|
|
pkgId: 'localhost+4873/jade/1.11.0',
|
|
} as DeprecationLog), 'deprecation warning reported')
|
|
|
|
const shr = await project.loadShrinkwrap()
|
|
t.equal(
|
|
shr.packages['/jade/1.11.0'].deprecated,
|
|
'Jade has been renamed to pug, please install the latest version of pug instead of jade',
|
|
'deprecated field added to shrinkwrap.yaml',
|
|
)
|
|
})
|