forked from cardosofelipe/fast-next-template
- Consolidated and modularized `eslint.config.mjs` with defined rules for source, test, E2E, and scripts. - Improved test and E2E rules with relaxed settings for flexibility and enhanced mocking. - Standardized variable naming and removed redundant imports in unit and E2E tests. - Updated error handling and comments to align with modern TypeScript best practices (e.g., `@ts-expect-error`).
38 lines
1.1 KiB
TypeScript
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();
|
|
});
|
|
});
|