diff --git a/test/fixtures/bpmn/model-complete-semantic.bpmn b/test/fixtures/bpmn/model-complete-semantic.bpmn index 552b96d3a7..1f41297177 100644 --- a/test/fixtures/bpmn/model-complete-semantic.bpmn +++ b/test/fixtures/bpmn/model-complete-semantic.bpmn @@ -19,6 +19,10 @@ + + + + @@ -1933,6 +1937,9 @@ + + + @@ -2001,6 +2008,8 @@ + + diff --git a/test/integration/mxGraph.model.bpmn.elements.test.ts b/test/integration/mxGraph.model.bpmn.elements.test.ts index fb838a7a8e..4ccade0458 100644 --- a/test/integration/mxGraph.model.bpmn.elements.test.ts +++ b/test/integration/mxGraph.model.bpmn.elements.test.ts @@ -1437,6 +1437,13 @@ describe('mxGraph model - BPMN elements', () => { align: 'left', }); }); + it('text annotations in collaboration', () => { + expect('text_annotation_in_collaboration_1').toBeTextAnnotation({ + label: 'Text Annotation in collaboration', + parentId: getDefaultParentId(), + align: 'left', + }); + }); it('groups', () => { expect('Group_0_in_collaboration').toBeGroup({ @@ -1515,6 +1522,10 @@ describe('mxGraph model - BPMN elements', () => { it('associations', () => { expect('association_id').toBeAssociationFlow({ parentId: 'participant_1_id', verticalAlign: 'bottom' }); }); + + it('associations in collaboration', () => { + expect('association_in_collaboration_1').toBeAssociationFlow({ parentId: getDefaultParentId(), verticalAlign: 'bottom' }); + }); }); it('Diagram with a not displayed pool (without shape) with elements', () => {