我测试反应组件并像这样渲染
function renderComponent() {
component = TestUtils.renderIntoDocument(
<Component />
);
}
但在组件中有img标签需要一些png
<img style={style} src={require('img/img.png')}/>
并在尝试渲染时出错
Error: Cannot find module 'img/img.png'
那么如何在渲染组件
之前禁用此要求