2019-06-19 12:08:06 -04:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2019-06-22 21:57:18 -04:00
|
|
|
import App from '../../components/App';
|
2019-06-19 12:08:06 -04:00
|
|
|
|
|
|
|
it('renders without crashing', () => {
|
|
|
|
const div = document.createElement('div');
|
|
|
|
ReactDOM.render(<App />, div);
|
|
|
|
ReactDOM.unmountComponentAtNode(div);
|
2019-06-22 21:57:18 -04:00
|
|
|
})
|