2019-07-24 17:10:44 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2019-09-18 17:53:48 +00:00
|
|
|
import Pond from './Pond';
|
2019-07-24 17:10:44 +00:00
|
|
|
|
|
|
|
it('renders without crashing', () => {
|
|
|
|
const div = document.createElement('div');
|
2019-09-18 17:53:48 +00:00
|
|
|
ReactDOM.render(<Pond />, div);
|
2019-07-24 17:10:44 +00:00
|
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
|
|
});
|