import { Thumbnail } from './thumbnail';
import React from 'react';
import ReactTestRenderer from 'react-test-renderer';
describe('User icon tests', () => {
it('renders user icon correctly', () => {
const tree = ReactTestRenderer
.create()
.toJSON();
expect(tree).toMatchSnapshot();
});
it('renders user icon correctly when size is not specified', () => {
const tree = ReactTestRenderer
.create()
.toJSON();
expect(tree).toMatchSnapshot();
});
});