我有一个具有以下切入点的反应应用程序:
// Import dependencies
import React from 'react';
import { render } from 'react-dom';
import { browserHistory } from 'react-router';
import { syncHistoryWithStore } from 'react-router-redux';
import configureStore from './store/configureStore';
import Root from './containers/Root';
const store = configureStore({});
const history = syncHistoryWithStore(browserHistory, store);
render(
<Root store={store} history={history} />,
document.getElementById('react')
);
一种非常常见的配置。我想知道如何测试这样的东西,因为它不会导出任何东西,而jest依赖于导入你想测试的东西。