all repos — caroster @ fe5c5296f58e9109b7c6110aaa12fc6a1b207f78

[Octree] Group carpool to your event https://caroster.io

app/src/containers/SignIn/SignIn.test.js (view raw)

 1import React from 'react';
 2import renderer from 'react-test-renderer';
 3import SignIn from './SignIn';
 4describe('SignIn', () => {
 5  const signIn = renderer.create(<SignIn />);
 6  it('match snapshot without props', () => {
 7    expect(signIn.toJSON()).toMatchSnapshot();
 8  });
 9
10  it('can not submit the form until email and password is set', () => {});
11});