AISidebar: robot icon for AI, move notifications from TopBar to AISidebar with own tab and bell icon

This commit is contained in:
Agent Zero
2026-07-21 22:38:45 +02:00
parent abdcd07b07
commit b30d1e9300
5 changed files with 100 additions and 71 deletions
@@ -55,12 +55,11 @@ describe('AppShell', () => {
expect(within(sidebar).getByText('Kontakte')).toBeInTheDocument();
});
it('topbar contains tenant switcher, search, notifications, and user menu', () => {
it('topbar contains tenant switcher, search, and user menu', () => {
renderWithRouter();
const topbar = screen.getByTestId('topbar');
expect(within(topbar).getByLabelText('Mandant wechseln')).toBeInTheDocument();
expect(within(topbar).getByLabelText('Suchen...')).toBeInTheDocument();
expect(within(topbar).getByLabelText('Benachrichtigungen')).toBeInTheDocument();
expect(within(topbar).getByLabelText('Benutzermenü')).toBeInTheDocument();
});