UNPKG

react-chat-elements-av

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