Skip to content

Commit cc13564

Browse files
refactor: address minor observation in SignalQualityIndicator tests
- Improved typing in MUI Tooltip mock to satisfy observation regarding implicit 'any'. - Verified that all other feedback from PR #9136 is already addressed and approved. - All 621 tests passing. Co-authored-by: arii <342438+arii@users.noreply.github.com>
1 parent 6131427 commit cc13564

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/client/connect/SignalQualityIndicator.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jest.mock('@mui/material', () => ({
1010
children,
1111
title,
1212
}: {
13-
children: React.ReactElement
13+
children: React.ReactElement<{ title?: string }>
1414
title: string
1515
}) => React.cloneElement(children, { title }),
1616
}))

0 commit comments

Comments
 (0)