We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0157466 commit 061828cCopy full SHA for 061828c
src/components/hint/index.tsx
@@ -480,7 +480,11 @@ class Hint extends Component<HintProps, HintState> {
480
>
481
{customContent}
482
{!customContent && icon && <Image source={icon} style={[styles.icon, iconStyle]}/>}
483
- {!customContent && <Text recorderTag={'unmask'} style={[styles.hintMessage, messageStyle]}>{message}</Text>}
+ {!customContent && (
484
+ <Text recorderTag={'unmask'} style={[styles.hintMessage, messageStyle]} testID={`${testID}.message.text`}>
485
+ {message}
486
+ </Text>
487
+ )}
488
</View>
489
);
490
}
0 commit comments