mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 18:41:48 -04:00
9 lines
385 B
TypeScript
9 lines
385 B
TypeScript
import getPinnedVersion from '@pnpm/plugin-commands-installation/lib/getPinnedVersion'
|
|
|
|
test('getPinnedVersion()', () => {
|
|
expect(getPinnedVersion({ saveExact: true })).toEqual('patch')
|
|
expect(getPinnedVersion({ savePrefix: '' })).toEqual('patch')
|
|
expect(getPinnedVersion({ savePrefix: '~' })).toEqual('minor')
|
|
expect(getPinnedVersion({ savePrefix: '^' })).toEqual('major')
|
|
})
|