Files
fast-next-template/frontend/tests/app/(authenticated)/settings/preferences/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

27 lines
720 B
TypeScript

/**
* Tests for Preferences Page
* Smoke tests for placeholder page
*/
import { render, screen } from '@testing-library/react';
import PreferencesPage from '@/app/(authenticated)/settings/preferences/page';
describe('PreferencesPage', () => {
it('renders without crashing', () => {
render(<PreferencesPage />);
expect(screen.getByText('Preferences')).toBeInTheDocument();
});
it('renders heading', () => {
render(<PreferencesPage />);
expect(screen.getByRole('heading', { name: /^preferences$/i })).toBeInTheDocument();
});
it('shows placeholder text', () => {
render(<PreferencesPage />);
expect(screen.getByText(/configure your preferences/i)).toBeInTheDocument();
});
});