diff --git a/__tests__/installer.test.ts b/__tests__/installer.test.ts index 89ffea9..15f72bb 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -162,9 +162,7 @@ describe('installer tests', () => { const scriptArguments = ( getExecOutputSpy.mock.calls[callIndex][1] as string[] ).join(' '); - const expectedArgument = IS_WINDOWS - ? `-Runtime` - : `--runtime`; + const expectedArgument = IS_WINDOWS ? `-Runtime` : `--runtime`; expect(scriptArguments).toContain(expectedArgument); });