all repos — caroster @ e6d45fde70b1f3324eb4275c885541f0d1346f21

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

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

 1import React from 'react';
 2import renderer from 'react-test-renderer';
 3import SignIn from '.';
 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});