You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importReactfrom'react';import{shallow}from'enzyme';describe('Component Test',()=>{it('renders without crashing',()=>{shallow(<COMPONENT/>);});it('renders with snapshot correctly',()=>{constwrapper=shallow(<COMPONENT/>);expect(wrapper).toMatchSnapshot();});});