()
| 28 | it('should throw an error when using a hook outside a render', () => { |
| 29 | class Foo extends Component { |
| 30 | componentWillMount() { |
| 31 | useState(); |
| 32 | } |
| 33 | |
| 34 | render() { |
| 35 | return this.props.children; |
nothing calls this directly
no test coverage detected