Guest User

Untitled

a guest
Mar 7th, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. test('all fields are correctly filled', () => {
  2. const actual = getSignupFormFieldErrors({
  3. username: 'foo',
  4. email: 'foo@example.com',
  5. password: 'pass',
  6. passwordConfirmation: 'pass',
  7. });
  8. const expected = {};
  9. expect(actual).toEqual(expected);
  10. });
Add Comment
Please, Sign In to add comment