mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-14 17:12:35 -05:00
9 lines
348 B
TypeScript
9 lines
348 B
TypeScript
import { getPinnedVersion } from '../lib/getPinnedVersion.js'
|
|
|
|
test('getPinnedVersion()', () => {
|
|
expect(getPinnedVersion({ saveExact: true })).toBe('patch')
|
|
expect(getPinnedVersion({ savePrefix: '' })).toBe('patch')
|
|
expect(getPinnedVersion({ savePrefix: '~' })).toBe('minor')
|
|
expect(getPinnedVersion({ savePrefix: '^' })).toBe('major')
|
|
})
|