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.
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* Tests for Password Settings Page
|
||||
* Smoke tests for placeholder page
|
||||
*/
|
||||
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import PasswordSettingsPage from '@/app/(authenticated)/settings/password/page';
|
||||
|
||||
describe('PasswordSettingsPage', () => {
|
||||
it('renders without crashing', () => {
|
||||
render(<PasswordSettingsPage />);
|
||||
expect(screen.getByText('Password Settings')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('renders heading', () => {
|
||||
render(<PasswordSettingsPage />);
|
||||
|
||||
expect(screen.getByRole('heading', { name: /password settings/i })).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('shows placeholder text', () => {
|
||||
render(<PasswordSettingsPage />);
|
||||
|
||||
expect(screen.getByText(/change your password/i)).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user