diff -r d076a27e5631 -r 431977d7c9a6 client/src/App.test.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/src/App.test.js Mon May 22 14:34:35 2017 +0200 @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import App from './App'; +import {Provider} from 'react-redux'; + +import configureStore from './store/configure-store'; + +const store = configureStore(); + +it('renders without crashing', () => { + const div = document.createElement('div'); + ReactDOM.render( + + + , + div); +});