- 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.
27 lines
754 B
TypeScript
27 lines
754 B
TypeScript
/**
|
|
* Tests for Profile Settings Page
|
|
* Smoke tests for placeholder page
|
|
*/
|
|
|
|
import { render, screen } from '@testing-library/react';
|
|
import ProfileSettingsPage from '@/app/(authenticated)/settings/profile/page';
|
|
|
|
describe('ProfileSettingsPage', () => {
|
|
it('renders without crashing', () => {
|
|
render(<ProfileSettingsPage />);
|
|
expect(screen.getByText('Profile Settings')).toBeInTheDocument();
|
|
});
|
|
|
|
it('renders heading', () => {
|
|
render(<ProfileSettingsPage />);
|
|
|
|
expect(screen.getByRole('heading', { name: /profile settings/i })).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows placeholder text', () => {
|
|
render(<ProfileSettingsPage />);
|
|
|
|
expect(screen.getByText(/manage your profile information/i)).toBeInTheDocument();
|
|
});
|
|
});
|