SignIn.test.tsx 251 B

1234567891011
  1. import React from 'react';
  2. import { shallow } from 'enzyme';
  3. import SignIn from './SignIn';
  4. describe('Render', () => {
  5. it('should render component', () => {
  6. const wrapper = shallow(<SignIn />);
  7. expect(wrapper).toMatchSnapshot();
  8. });
  9. });