2018-04-07 16:26:28 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
import ReactDOM from 'react-dom';
|
2018-04-10 10:48:15 +02:00
|
|
|
import App from './index';
|
2018-04-07 16:26:28 +02:00
|
|
|
|
|
|
|
|
it('renders without crashing', () => {
|
|
|
|
|
const div = document.createElement('div');
|
|
|
|
|
ReactDOM.render(<App />, div);
|
|
|
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
|
|
|
});
|