all repos — caroster @ 1cc727f3c230f02f4f837deb8a5d7780737ee2c4

[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});