Files
fast-next-template/frontend/tests/app/(auth)/register/page.test.tsx
Felipe Cardoso fded54e61a Add comprehensive tests for authentication, settings, and password reset pages
- Introduced smoke tests for Login, Register, Password Reset, Password Reset Confirm, and Settings pages.
- Enhanced test coverage for all dynamic imports using mocks and added Jest exclusions for non-testable Next.js files.
- Added component-specific test files for better structure and maintainability.
- Improved test isolation by mocking navigation, providers, and rendering contexts.
2025-11-02 17:33:57 +01:00

38 lines
1.1 KiB
TypeScript

/**
* Tests for Register Page
* Smoke tests to verify page structure and component rendering
*/
import { render, screen } from '@testing-library/react';
import RegisterPage from '@/app/(auth)/register/page';
// Mock dynamic import
jest.mock('next/dynamic', () => ({
__esModule: true,
default: (importFn: () => Promise<any>, options?: any) => {
const Component = () => <div data-testid="register-form">Mocked RegisterForm</div>;
Component.displayName = 'RegisterForm';
return Component;
},
}));
describe('RegisterPage', () => {
it('renders without crashing', () => {
render(<RegisterPage />);
expect(screen.getByText('Create your account')).toBeInTheDocument();
});
it('renders heading and description', () => {
render(<RegisterPage />);
expect(screen.getByRole('heading', { name: /create your account/i })).toBeInTheDocument();
expect(screen.getByText(/get started with your free account today/i)).toBeInTheDocument();
});
it('renders RegisterForm component', () => {
render(<RegisterPage />);
expect(screen.getByTestId('register-form')).toBeInTheDocument();
});
});