(val)
| 337 | const overrideProps = sandbox.spy(() => ({})) |
| 338 | const value = 'foo' |
| 339 | const mapValueToProps = (val) => ({ 'data-mapped': val }) |
| 340 | |
| 341 | shallow(getShorthand({ defaultProps, mapValueToProps, overrideProps, value })) |
| 342 | overrideProps.should.have.been.calledWith({ ...defaultProps, ...mapValueToProps(value) }) |
no outgoing calls
no test coverage detected
searching dependent graphs…