docs: localize workflow guidance
Module Package Release / publish-packages (push) Successful in 12s

This commit is contained in:
2026-08-22 08:27:57 +02:00
parent 8e5415dfe7
commit fa0bdde839
5 changed files with 47 additions and 4 deletions
+8
View File
@@ -11,6 +11,7 @@ class WorkflowManifestTests(unittest.TestCase):
manifest = get_manifest()
self.assertEqual("workflow", manifest.id)
self.assertEqual("0.1.21", manifest.version)
self.assertEqual(("workflow_engine",), manifest.dependencies)
self.assertEqual(
{"workflow.definition_graph", "workflow.definition_catalogue", "workflow.bpmn_interchange"},
@@ -38,6 +39,13 @@ class WorkflowManifestTests(unittest.TestCase):
manifest.frontend.package_name if manifest.frontend else None,
)
for topic in manifest.documentation:
german = topic.translations.get("de", {})
self.assertTrue(
all(german.get(field) for field in ("title", "summary", "body")),
topic.id,
)
def test_editor_exposes_semantic_help_without_replacing_static_help(self) -> None:
root = Path(__file__).parents[1]
page = (root / "webui/src/features/workflow/WorkflowPage.tsx").read_text()