From ff40a4991342f28eb0965f80d4c8544040ae29cc Mon Sep 17 00:00:00 2001 From: Nikolai Laevskii Date: Fri, 8 Sep 2023 15:30:07 +0200 Subject: [PATCH] Format --- __tests__/installer.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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); });