I am trying to set the cypress "data-cy" to an helper text for a mui TextField. I was able to change the style of this helper text by passing a style property to FormHelperTextProps :
FormHelperTextProps={{
style: {
myStyle
},
}}
But I don't know how to specify a custom prop such as data-cy, I tried to simply add it after style property but does not have a "data-cy" property. Using the classes property to set it has the same issue