Skip to content

Commit 3b8b03f

Browse files
committed
Add .npmrc unit and E2E tests
1 parent 8026329 commit 3b8b03f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
matrix:
160160
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
161161
node-version-file:
162-
[.nvmrc, .tool-versions, .tool-versions-node, package.json]
162+
[.nvmrc, .tool-versions, .tool-versions-node, package.json, .npmrc]
163163
steps:
164164
- uses: actions/checkout@v4
165165
- name: Setup node from node version file

__tests__/data/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use-node-version=20.0.0

__tests__/main.test.ts

+3
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,13 @@ describe('main tests', () => {
103103
${''} | ${''}
104104
${'unknown format'} | ${'unknown format'}
105105
${' 14.1.0 '} | ${'14.1.0'}
106+
${'use-node-version=lts/iron'} | ${'lts/iron'}
106107
${'{"volta": {"node": ">=14.0.0 <=17.0.0"}}'}| ${'>=14.0.0 <=17.0.0'}
107108
${'{"volta": {"extends": "./package.json"}}'}| ${'18.0.0'}
108109
${'{"engines": {"node": "17.0.0"}}'} | ${'17.0.0'}
109110
${'{}'} | ${null}
111+
${'[section]use-node-version=16'} | ${null}
112+
${'[section]\nuse-node-version=20'} | ${null}
110113
`.it('parses "$contents"', ({contents, expected}) => {
111114
const existsSpy = jest.spyOn(fs, 'existsSync');
112115
existsSpy.mockImplementation(() => true);

0 commit comments

Comments
 (0)