all repos — caroster @ 7f378db1a463f777b274446840456613c75fe547

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

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

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