From 8c7f3b2e4ea1418a3ca38d4a1a69102320d949c3 Mon Sep 17 00:00:00 2001 From: Marcel Date: Mon, 4 May 2026 15:16:01 +0200 Subject: [PATCH] test(person-mention): move i18n test to its own describe block MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move `transcription_block_placeholder contains @ mention trigger` out of `describe('PersonMentionEditor — placeholder behavior')` into a new `describe('PersonMentionEditor — i18n message content')` block so each describe group has a single, clear responsibility. Co-Authored-By: Claude Sonnet 4.6 --- .../src/lib/components/PersonMentionEditor.svelte.spec.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/lib/components/PersonMentionEditor.svelte.spec.ts b/frontend/src/lib/components/PersonMentionEditor.svelte.spec.ts index 0a15169c..be17e100 100644 --- a/frontend/src/lib/components/PersonMentionEditor.svelte.spec.ts +++ b/frontend/src/lib/components/PersonMentionEditor.svelte.spec.ts @@ -394,7 +394,11 @@ describe('PersonMentionEditor — placeholder behavior', () => { expect(inner!.hasAttribute('data-placeholder')).toBe(false); }); }); +}); +// ─── i18n message content ───────────────────────────────────────────────────── + +describe('PersonMentionEditor — i18n message content', () => { it('transcription_block_placeholder contains @ mention trigger for discoverability', () => { expect(m.transcription_block_placeholder()).toContain('@'); });