all repos — caroster @ 6dbcd3bdfb89ece1ca24cc4a4ccf50d556112f4a

[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';
 4
 5describe('SignIn', () => {
 6  const signIn = renderer.create(<SignIn />);
 7  it('match snapshot without props', () => {
 8    expect(signIn.toJSON()).toMatchSnapshot();
 9  });
10
11  it('can not submit the form until email and password is set', () => {});
12});