Guest User

Untitled

a guest
Mar 13th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. describe('signup form', () => {
  2. test('should contain a form element', () => {
  3. const wrapper = shallow(<SignupForm username="" email="" password="" passwordConfirmation="" />);
  4. expect(wrapper.type()).toBe('form');
  5. });
  6. });
Add Comment
Please, Sign In to add comment