T07b: frontend feature pages — companies + contacts + settings + audit + dashboard + search
- 11 new feature pages (CompaniesList/Detail/Form, ContactsList/Detail/Form, SettingsProfile/Roles/Users, AuditLog, GlobalSearchResults) - 3 page updates (Dashboard with StatCard+ActivityFeed, Settings with tree nav+Outlet, TopBar with SearchDropdown) - 13 new routes in routes/index.tsx - i18n updates (de.json + en.json) with companies/contacts/settings/audit/search keys - 12 new test files + 2 existing test fixes (TopBar, AppShell) - 7 shared components (DataGrid, Tabs, SearchDropdown, CsvImportDialog, StatCard, ActivityFeed, UnsavedChangesGuard) - 16 new API hooks in hooks.ts - Verification: 141 tests pass, build succeeds, tsc --noEmit clean
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
import React from 'react';
|
||||
import { describe, it, expect, vi } from 'vitest';
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import { MemoryRouter } from 'react-router-dom';
|
||||
import { SettingsProfilePage } from '@/pages/SettingsProfile';
|
||||
|
||||
vi.mock('@/store/authStore', () => ({
|
||||
useAuthStore: () => ({
|
||||
user: {
|
||||
id: '1', email: 'test@test.de', first_name: 'Max', last_name: 'Mustermann',
|
||||
},
|
||||
}),
|
||||
}));
|
||||
|
||||
vi.mock('@/api/hooks', () => ({
|
||||
useUpdateUser: () => ({ mutateAsync: vi.fn(), isPending: false }),
|
||||
}));
|
||||
|
||||
vi.mock('@/components/ui/Toast', () => ({
|
||||
useToast: () => ({ success: vi.fn(), error: vi.fn(), info: vi.fn() }),
|
||||
}));
|
||||
|
||||
describe('SettingsProfilePage', () => {
|
||||
it('renders profile page', () => {
|
||||
render(<MemoryRouter><SettingsProfilePage /></MemoryRouter>);
|
||||
expect(screen.getByTestId('settings-profile-page')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('renders first name field', () => {
|
||||
render(<MemoryRouter><SettingsProfilePage /></MemoryRouter>);
|
||||
expect(screen.getByLabelText(/Vorname/)).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('renders email field', () => {
|
||||
render(<MemoryRouter><SettingsProfilePage /></MemoryRouter>);
|
||||
expect(screen.getByLabelText(/E-Mail/)).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user