chore(test): Added missing smoke test (#30)

This commit is contained in:
Techno Tim 2021-08-28 18:03:55 -05:00 committed by GitHub
parent 9326dff924
commit dacc105542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,10 @@
import Avatar from './Avatar';
import React from 'react';
import ReactDOM from 'react-dom';
describe('<Avatar />', () => {
test('renders without exploding', () => {
const div = document.createElement('div');
ReactDOM.render(<Avatar />, div);
});
});