()
| 24 | describe('createPortal', () => { |
| 25 | class Portal extends Component { |
| 26 | componentDidMount () { |
| 27 | this.setContainer(this.props.container) |
| 28 | this.forceUpdate(this.props.onRendered) |
| 29 | } |
| 30 | |
| 31 | componentWillReceiveProps (nextProps) { |
| 32 | if (nextProps.container !== this.props.container) { |
nothing calls this directly
no test coverage detected