()
| 7 | |
| 8 | class App extends React.Component { |
| 9 | constructor() { |
| 10 | super(); |
| 11 | this.state = { |
| 12 | canRefreshResolve: 1, |
| 13 | listLen: 0, |
| 14 | hasMore: 0, |
| 15 | initializing: 1, |
| 16 | refreshedAt: Date.now(), |
| 17 | }; |
| 18 | } |
| 19 | |
| 20 | componentDidMount() { |
| 21 | setTimeout(() => { |
nothing calls this directly
no outgoing calls
no test coverage detected