Files
pnpm/env/system-node-version/test/getSystemNodeVersion.test.ts
2025-08-25 10:02:00 +02:00

36 lines
1.1 KiB
TypeScript

import { jest } from '@jest/globals'
jest.unstable_mockModule('execa', () => ({
sync: jest.fn(() => ({
stdout: 'v10.0.0',
})),
}))
const { getSystemNodeVersionNonCached } = await import('../lib/index.js')
const execa = await import('execa')
test('getSystemNodeVersion() executed from an executable pnpm CLI', () => {
// @ts-expect-error
process['pkg'] = {}
expect(getSystemNodeVersionNonCached()).toBe('v10.0.0')
expect(execa.sync).toHaveBeenCalledWith('node', ['--version'])
})
test('getSystemNodeVersion() from a non-executable pnpm CLI', () => {
// @ts-expect-error
delete process['pkg']
expect(getSystemNodeVersionNonCached()).toBe(process.version)
})
test('getSystemNodeVersion() returns undefined if execa.sync throws an error', () => {
// Mock execa.sync to throw an error
jest.mocked(execa.sync).mockImplementationOnce(() => {
throw new Error('not found: node')
})
// @ts-expect-error
process['pkg'] = {}
expect(getSystemNodeVersionNonCached()).toBeUndefined()
expect(execa.sync).toHaveBeenCalledWith('node', ['--version'])
})