mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
refactor: Make no-extra-parens rule stricter
This commit is contained in:
@@ -23,7 +23,7 @@ describe('A ClientInfoHandler', (): void => {
|
||||
|
||||
provider = {
|
||||
Client: {
|
||||
find: (id: string): any => (id ? { metadata: jest.fn().mockReturnValue(clientMetadata) } : undefined),
|
||||
find: (id: string): any => id ? { metadata: jest.fn().mockReturnValue(clientMetadata) } : undefined,
|
||||
},
|
||||
} as any;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user