()
| 21 | } |
| 22 | |
| 23 | render() { |
| 24 | return ( |
| 25 | <div> |
| 26 | <div className="trigger" onClick={this.toggle}> |
| 27 | Toggle |
| 28 | </div> |
| 29 | <TransitionGroup component="div"> |
| 30 | {this.state.showItem ? this.props.children : null} |
| 31 | </TransitionGroup> |
| 32 | </div> |
| 33 | ); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | describe('Fade', () => { |
nothing calls this directly
no outgoing calls
no test coverage detected