diff --git a/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte b/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte
index ab5b0a30..e903a9da 100644
--- a/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte
+++ b/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte
@@ -24,33 +24,38 @@ function excerpt(body: string | undefined): string {
{#if stories.length > 0}
-
-
- {m.dashboard_reader_recent_stories_heading()}
-
-
+
{/if}
diff --git a/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte.spec.ts b/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte.spec.ts
index c749858d..c5d83051 100644
--- a/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte.spec.ts
+++ b/frontend/src/lib/shared/dashboard/ReaderRecentStories.svelte.spec.ts
@@ -52,7 +52,7 @@ describe('ReaderRecentStories', () => {
await expect.element(links).not.toBeInTheDocument();
});
- it('renders "Alle Geschichten" link', async () => {
+ it('renders "Alle Geschichten" link pointing to /geschichten', async () => {
render(ReaderRecentStories, { stories: [story1] });
const allLink = page.getByRole('link', { name: /Alle Geschichten/i });
await expect.element(allLink).toHaveAttribute('href', '/geschichten');
@@ -72,4 +72,44 @@ describe('ReaderRecentStories', () => {
const cls = ((await allLink.element()) as HTMLElement).className;
expect(cls).toMatch(/min-h-\[44px\]/);
});
+
+ it('card-head contains an h3 (not h2)', async () => {
+ render(ReaderRecentStories, { stories: [story1] });
+ const h3 = page.getByRole('heading', { level: 3 });
+ await expect.element(h3).toBeInTheDocument();
+ const h2 = page.getByRole('heading', { level: 2 });
+ await expect.element(h2).not.toBeInTheDocument();
+ });
+
+ it('card-head div has border-b and border-line classes', async () => {
+ render(ReaderRecentStories, { stories: [story1] });
+ const h3 = page.getByRole('heading', { level: 3 });
+ const cardHead = ((await h3.element()) as HTMLElement).parentElement;
+ expect(cardHead?.className).toMatch(/border-b/);
+ expect(cardHead?.className).toMatch(/border-line/);
+ });
+
+ it('"Alle Geschichten" link is inside the card-head (sibling of h3)', async () => {
+ render(ReaderRecentStories, { stories: [story1] });
+ const h3 = page.getByRole('heading', { level: 3 });
+ const cardHead = ((await h3.element()) as HTMLElement).parentElement;
+ const allLink = cardHead?.querySelector('a');
+ expect(allLink).not.toBeNull();
+ expect(allLink?.textContent?.trim()).toMatch(/Alle Geschichten/i);
+ });
+
+ it('story-row link has min-h-[44px] touch target', async () => {
+ render(ReaderRecentStories, { stories: [story1] });
+ const link = page.getByRole('link', { name: /Die Familie Müller/ });
+ const cls = ((await link.element()) as HTMLElement).className;
+ expect(cls).toMatch(/min-h-\[44px\]/);
+ });
+
+ it('excerpt has text-ink-2 class', async () => {
+ render(ReaderRecentStories, { stories: [story1] });
+ const link = page.getByRole('link', { name: /Die Familie Müller/ });
+ const el = (await link.element()) as HTMLElement;
+ const excerptEl = el.querySelector('p');
+ expect(excerptEl?.className).toMatch(/text-ink-2/);
+ });
});