mirror of
https://github.com/techno-tim/littlelink-server.git
synced 2025-03-10 12:59:13 +01:00
chore(test): Added missing smoke test (#30)
This commit is contained in:
parent
9326dff924
commit
dacc105542
10
src/components/Avatar/Avatar.test.js
Normal file
10
src/components/Avatar/Avatar.test.js
Normal 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);
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user