all repos — caroster @ 943931a5ccd92069bfad1e8b2e4310b237797bc6

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