import React from 'react';
import renderer from 'react-test-renderer';
jest.mock('../containers/SignIn/index', () => ({
  __esModule: true,
  default: () => /containers/SignIn component,
}));
import SignIn from './SignIn';
describe('SignIn page', () => {
  const SignInPage = renderer.create();
  it('match snapshot', () => {
    expect(SignInPage.toJSON()).toMatchSnapshot();
  });
});