Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amcaplan committed Jan 13, 2025
1 parent 7429878 commit 7df0f33
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/app/src/cli/services/info.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ describe('info', () => {
vi.mocked(selectOrganizationPrompt).mockResolvedValue(ORG1)

// When
const result = (await info(app, remoteApp, ORG1, {...infoOptions(), format: 'json', webEnv: true})) as OutputMessage
const result = (await info(app, remoteApp, ORG1, {
...infoOptions(),
format: 'json',
webEnv: true,
})) as OutputMessage

// Then
expect(unstyled(stringifyMessage(result))).toMatchInlineSnapshot(`
Expand Down

0 comments on commit 7df0f33

Please sign in to comment.