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.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
/**
|
|
* Tests for Password Reset Page
|
|
* Smoke tests to verify page structure and component rendering
|
|
*/
|
|
|
|
import { render, screen } from '@testing-library/react';
|
|
import PasswordResetPage from '@/app/(auth)/password-reset/page';
|
|
|
|
// Mock dynamic import
|
|
jest.mock('next/dynamic', () => ({
|
|
__esModule: true,
|
|
default: (_importFn: () => Promise<any>, _options?: any) => {
|
|
const Component = () => <div data-testid="password-reset-form">Mocked PasswordResetRequestForm</div>;
|
|
Component.displayName = 'PasswordResetRequestForm';
|
|
return Component;
|
|
},
|
|
}));
|
|
|
|
describe('PasswordResetPage', () => {
|
|
it('renders without crashing', () => {
|
|
render(<PasswordResetPage />);
|
|
expect(screen.getByText('Reset your password')).toBeInTheDocument();
|
|
});
|
|
|
|
it('renders heading and description', () => {
|
|
render(<PasswordResetPage />);
|
|
|
|
expect(screen.getByRole('heading', { name: /reset your password/i })).toBeInTheDocument();
|
|
expect(screen.getByText(/we'll send you an email with instructions/i)).toBeInTheDocument();
|
|
});
|
|
|
|
it('renders PasswordResetRequestForm component', () => {
|
|
render(<PasswordResetPage />);
|
|
|
|
expect(screen.getByTestId('password-reset-form')).toBeInTheDocument();
|
|
});
|
|
});
|