| 1296 | let propsPassedIn = [] |
| 1297 | |
| 1298 | @connect((props, context) => { |
| 1299 | invocationCount++ |
| 1300 | contextPassedIn.push(context) |
| 1301 | propsPassedIn.push(props) |
| 1302 | return {} |
| 1303 | }) |
| 1304 | class InnerComponent extends Component { |
| 1305 | render() { |
| 1306 | return <div /> |
| 1307 | } |
| 1308 | } |
| 1309 | InnerComponent.contextTypes = { |
| 1310 | foo: PropTypes.string |
| 1311 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…