()
| 4 | describe('forwardRef', () => { |
| 5 | it('should return object with forwardRef property', () => { |
| 6 | const fn = () => ({}); |
| 7 | const referenceFn = forwardRef(() => fn); |
| 8 | expect(referenceFn.forwardRef()).to.be.eql(fn); |
| 9 | }); |
no outgoing calls
no test coverage detected