chore: run prettier

This commit is contained in:
Jef LeCompte 2022-06-29 15:11:14 -07:00
parent f40b60859d
commit 9aa86428fe
No known key found for this signature in database
GPG Key ID: 7F5BA322B5DC170C
2 changed files with 3 additions and 3 deletions

View File

@ -592,7 +592,7 @@ describe('setup-node', () => {
inputs['node-version-file'] = 'volta'; inputs['node-version-file'] = 'volta';
existsSpy.mockImplementationOnce( existsSpy.mockImplementationOnce(
input => input === path.join(__dirname, 'data', versionFile) input => input === path.join(__dirname, 'data', versionFile)
); );
// Act // Act
await main.run(); await main.run();
@ -601,7 +601,7 @@ describe('setup-node', () => {
expect(existsSpy).toHaveBeenCalledTimes(1); expect(existsSpy).toHaveBeenCalledTimes(1);
expect(existsSpy).toHaveReturnedWith(true); expect(existsSpy).toHaveReturnedWith(true);
expect(logSpy).toHaveBeenCalledWith( expect(logSpy).toHaveBeenCalledWith(
`Resolved ${versionFile} as ${expectedVersionSpec}` `Resolved ${versionFile} as ${expectedVersionSpec}`
); );
}); });

View File

@ -95,7 +95,7 @@ function resolveVersionInput(): string {
version = JSON.parse(fs.readFileSync(versionFilePath, 'utf8')).volta.node; version = JSON.parse(fs.readFileSync(versionFilePath, 'utf8')).volta.node;
} else { } else {
version = installer.parseNodeVersionFile( version = installer.parseNodeVersionFile(
fs.readFileSync(versionFilePath, 'utf8') fs.readFileSync(versionFilePath, 'utf8')
); );
} }