UNPKG

react-chat-elements

Version:
13 lines (11 loc) 359 B
import React, { Component } from 'react' import { shallow } from 'enzyme' import toJson from 'enzyme-to-json' import Avatar from '../Avatar' describe('Avatar component', () => { it('should render without issues', () => { const component = shallow(<Avatar />) expect(component.length).toBe(1) expect(toJson(component)).toMatchSnapshot() }) })