()
| 166 | const Parent = observer( |
| 167 | class Parent extends React.Component<any, any> { |
| 168 | render() { |
| 169 | return ( |
| 170 | <div onClick={changeStuff.bind(this)} id="testDiv"> |
| 171 | {data.items.map(item => ( |
| 172 | <Child key="fixed" item={item} /> |
| 173 | ))} |
| 174 | </div> |
| 175 | ) |
| 176 | } |
| 177 | } |
| 178 | ) |
| 179 |
nothing calls this directly
no test coverage detected