mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-03 04:28:36 -05:00
9 lines
357 B
TypeScript
9 lines
357 B
TypeScript
import { getPinnedVersion } from '../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')
|
|
})
|