Files
pragma-stack/frontend/tests/app/(auth)/register/page.test.tsx
Felipe Cardoso da021d0640 Update tests and e2e files to support locale-based routing
- Replaced static paths with dynamic locale subpaths (`/[locale]/*`) in imports, URLs, and assertions across tests.
- Updated `next-intl` mocks for improved compatibility with `locale`-aware components.
- Standardized `page.goto` and navigation tests with `/en` as the base locale for consistency.
2025-11-18 23:26:10 +01:00

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/[locale]/(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();
});
});