From e3175f493ccc87b285394acbb3c2fc3fb37f5dd1 Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 29 Apr 2026 00:39:45 +0200 Subject: [PATCH] test(transcription): backfill mentionedPersons on missed read-view fixture The b2 fixture in the second describe block had been missed when the TranscriptionBlockData type added the mentionedPersons field. Co-Authored-By: Claude Sonnet 4.6 --- .../src/lib/components/TranscriptionReadView.svelte.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/components/TranscriptionReadView.svelte.test.ts b/frontend/src/lib/components/TranscriptionReadView.svelte.test.ts index c62eee55..f49287cc 100644 --- a/frontend/src/lib/components/TranscriptionReadView.svelte.test.ts +++ b/frontend/src/lib/components/TranscriptionReadView.svelte.test.ts @@ -24,7 +24,10 @@ const blocks: TranscriptionBlockData[] = [ text: 'Second paragraph text.', label: null, sortOrder: 2, - version: 1 + version: 1, + source: 'MANUAL', + reviewed: false, + mentionedPersons: [] } ];