Skip to content
Snippets Groups Projects

Sign up/Log in form nest into AuthUser

Merged Defendi Alberto requested to merge SignUp into master
3 files
+ 180
0
Compare changes
  • Side-by-side
  • Inline
Files
3
import React from 'react';
import { render } from '@testing-library/react';
import { SignUpForm } from './SignUpForm';
describe('<SignUpForm />', () => {
it('should render form', () => {
const wrapper = render(<SignUpForm />);
expect(wrapper.queryByTestId('Form')).toBeTruthy();
});
});
Loading