From 3bf06e207ba17768f6adb1c35dc69a82ae3a500a Mon Sep 17 00:00:00 2001 From: schmannie Date: Mon, 16 May 2022 09:32:19 -0700 Subject: [PATCH] =?UTF-8?q?Run=20project=20Prettier=20=F0=9F=92=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __tests__/installer.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/__tests__/installer.test.ts b/__tests__/installer.test.ts index ceb34aaa..c1e16b5f 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -593,7 +593,10 @@ describe('setup-node', () => { it('reads package.json as node-version-file if provided', async () => { // Arrange - const versionSpec = fs.readFileSync(path.join(__dirname, 'data/package.json'), 'utf-8'); + const versionSpec = fs.readFileSync( + path.join(__dirname, 'data/package.json'), + 'utf-8' + ); const versionFile = 'package.json'; const expectedVersionSpec = '14'; process.env['GITHUB_WORKSPACE'] = path.join(__dirname, 'data');