(
instance: TestInstance,
text: TextMatch,
options: TextMatchOptions = {},
)
| 17 | type ByHintTextOptions = CommonQueryOptions & TextMatchOptions; |
| 18 | |
| 19 | const getInstanceByHintText = ( |
| 20 | instance: TestInstance, |
| 21 | text: TextMatch, |
| 22 | options: TextMatchOptions = {}, |
| 23 | ) => { |
| 24 | const { exact, normalizer } = options; |
| 25 | return matches(text, instance.props.accessibilityHint, normalizer, exact); |
| 26 | }; |
| 27 | |
| 28 | const queryAllByHintText = ( |
| 29 | instance: TestInstance, |
no test coverage detected
searching dependent graphs…