Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolai-laevskii committed Sep 4, 2023
1 parent 5a51472 commit b3acb6f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions __tests__/installer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,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);
});
Expand Down

0 comments on commit b3acb6f

Please sign in to comment.