(props)
| 170 | it('hot-reloads children without losing state', () => { |
| 171 | class App extends Component { |
| 172 | constructor(props) { |
| 173 | super(props); |
| 174 | this.state = { value: 'old' }; |
| 175 | } |
| 176 | |
| 177 | shouldComponentUpdate() { |
| 178 | return false; |
nothing calls this directly
no outgoing calls
no test coverage detected