(props)
| 3843 | |
| 3844 | describe('event bubbling', () => { |
| 3845 | function Pressable(props) { |
| 3846 | let {pressProps} = usePress(props); |
| 3847 | return ( |
| 3848 | <div {...pressProps} data-testid={props['data-testid']}> |
| 3849 | {props.children} |
| 3850 | </div> |
| 3851 | ); |
| 3852 | } |
| 3853 | |
| 3854 | describe.each` |
| 3855 | type | prepare | actions |
nothing calls this directly
no test coverage detected