diff --git a/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.svelte b/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.svelte
index 24de994..7ab2cb5 100644
--- a/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.svelte
+++ b/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.svelte
@@ -23,7 +23,7 @@
Als Mitglied kannst du
-
+
-
✓
Wochenplan einsehen
diff --git a/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.test.ts b/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.test.ts
index f114729..bd6c1b9 100644
--- a/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.test.ts
+++ b/frontend/src/routes/(public)/join/[token]/HouseholdIdentityPanel.test.ts
@@ -31,4 +31,11 @@ describe('HouseholdIdentityPanel', () => {
});
expect(screen.getByText('🥗')).toBeInTheDocument();
});
+
+ it('permissions list has accessible name', () => {
+ render(HouseholdIdentityPanel, {
+ props: { householdName: 'Smith family', inviterName: 'Sarah' }
+ });
+ expect(screen.getByRole('list', { name: /als mitglied kannst du/i })).toBeInTheDocument();
+ });
});