This repository has been archived on 2019-10-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2018-11-08 17:54:37 +01:00
|
|
|
import React from 'react';
|
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
import App from './App';
|
|
|
|
|
|
|
|
|
|
it('renders without crashing', () => {
|
|
|
|
|
const div = document.createElement('div');
|
|
|
|
|
ReactDOM.render(<App />, div);
|
|
|
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
|
|
|
});
|