feat: Remove the Briefwechsel view; retarget its links to document search (#716) #721

Merged
marcel merged 13 commits from feat/issue-716-remove-briefwechsel into main 2026-06-03 10:26:56 +02:00
Showing only changes of commit aa13e40bd6 - Show all commits

View File

@@ -73,9 +73,14 @@ describe('CoCorrespondentsList', () => {
}
});
// Asserted against the de message (names both persons) — not retyped copy.
const link = page.getByRole('link', { name: /max mustermann/i });
await expect.element(link).toHaveAttribute('title', /Anna Schmidt/);
await expect.element(link).toHaveAttribute('title', /Max Mustermann/);
await expect
.element(link)
.toHaveAttribute(
'title',
m.person_correspondents_search_title({ A: 'Anna Schmidt', B: 'Max Mustermann' })
);
});
it('builds initials from up to two name parts', async () => {