Skip to content

Instantly share code, notes, and snippets.

@corradin
Created February 25, 2018 19:23
Show Gist options
  • Save corradin/c6af883db9045dc062bbbdbba3c0f10e to your computer and use it in GitHub Desktop.
Save corradin/c6af883db9045dc062bbbdbba3c0f10e to your computer and use it in GitHub Desktop.
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);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment