feat(transcription): re-edit existing @mention by pre-filling the search input (#628) #717

Merged
marcel merged 9 commits from feat/issue-628-mention-reedit into main 2026-06-03 07:55:30 +02:00
Showing only changes of commit e6a0fbc915 - Show all commits

View File

@@ -74,7 +74,16 @@ export default defineConfig({
'src/lib/document/**',
'src/hooks.server.ts'
],
exclude: ['**/*.svelte', '**/*.svelte.ts', '**/__mocks__/**'],
exclude: [
'**/*.svelte',
'**/*.svelte.ts',
'**/__mocks__/**',
// Tiptap NodeView — builds live ProseMirror DOM and only runs inside
// the browser editor, so it is exercised by the client project's
// browser tests, not this node server-coverage run. Browser-only UI
// .ts file, excluded like the actions/hooks this config measures around.
'src/lib/shared/discussion/mentionNodeView.ts'
],
thresholds: {
lines: 80,
functions: 80,