(props)
| 3885 | |
| 3886 | describe('event bubbling', () => { |
| 3887 | function Pressable(props) { |
| 3888 | let {pressProps} = usePress(props); |
| 3889 | return ( |
| 3890 | <div {...pressProps} data-testid={props['data-testid']}> |
| 3891 | {props.children} |
| 3892 | </div> |
| 3893 | ); |
| 3894 | } |
| 3895 | |
| 3896 | describe.each` |
| 3897 | type | prepare | actions |
nothing calls this directly
no test coverage detected