diff --git a/__tests__/official-installer.test.ts b/__tests__/official-installer.test.ts index c30a70ce..10fd67be 100644 --- a/__tests__/official-installer.test.ts +++ b/__tests__/official-installer.test.ts @@ -255,7 +255,12 @@ describe('setup-node', () => { return `some/${cmd}/path`; }); getExecOutputSpy.mockImplementation(async (cmd: string) => ({ - stdout: cmd === 'node' ? `v${resolvedVersion}` : cmd === 'npm' ? '11.12.1' : '4.17.1', + stdout: + cmd === 'node' + ? `v${resolvedVersion}` + : cmd === 'npm' + ? '11.12.1' + : '4.17.1', stderr: '', exitCode: 0 }));