import React from 'react'; import * as ReactDOM from 'react-dom'; import { ChatSettings as Thing } from '.'; import { chatWithReads, adam } from '../../util/mocks'; describe('Thing', () => { it('renders without crashing', () => { const div = document.createElement('div'); ReactDOM.render( , div ); ReactDOM.unmountComponentAtNode(div); }); });