Fix node-version-file interprets entire package.json as a version (#865)

This commit is contained in:
NullVoxPopuli
2023-12-14 07:53:26 -05:00
committed by GitHub
parent 7247617371
commit b39b52d121
5 changed files with 78 additions and 11 deletions

View File

@ -101,6 +101,7 @@ describe('main tests', () => {
${' 14.1.0 '} | ${'14.1.0'}
${'{"volta": {"node": ">=14.0.0 <=17.0.0"}}'}| ${'>=14.0.0 <=17.0.0'}
${'{"engines": {"node": "17.0.0"}}'} | ${'17.0.0'}
${'{}'} | ${null}
`.it('parses "$contents"', ({contents, expected}) => {
expect(util.parseNodeVersionFile(contents)).toBe(expected);
});