chore(copy-paste): add failing test case verifying #798
Failing test case was removed during refactoring. Related to #798.
This commit is contained in:
parent
91f92b3de5
commit
ec13d8e7b8
|
@ -164,6 +164,41 @@ describe('features/copy-paste', function() {
|
|||
expect(findDescriptorInTree('StartEvent_1', tree).type).to.eql('bpmn:StartEvent');
|
||||
}));
|
||||
|
||||
|
||||
it.skip('should not mutate copied elements', inject(function(copyPaste, elementRegistry, modeling) {
|
||||
|
||||
// given
|
||||
var process = elementRegistry.get('Process_1'),
|
||||
intermediateThrowEvent = elementRegistry.get('IntermediateThrowEvent_1');
|
||||
|
||||
copyPaste.copy(intermediateThrowEvent);
|
||||
|
||||
// when
|
||||
modeling.updateProperties(intermediateThrowEvent, {
|
||||
name: 'foo'
|
||||
});
|
||||
|
||||
var elements = copyPaste.paste({
|
||||
element: process,
|
||||
point: {
|
||||
x: 1000,
|
||||
y: 1000
|
||||
}
|
||||
});
|
||||
|
||||
// then
|
||||
intermediateThrowEvent = find(elements, function(element) {
|
||||
return is(element, 'bpmn:IntermediateThrowEvent');
|
||||
});
|
||||
|
||||
var intermediateThrowEventBo = getBusinessObject(intermediateThrowEvent);
|
||||
|
||||
// due to https://github.com/bpmn-io/bpmn-js/blob/v5.1.2/lib/features/modeling/behavior/LabelBehavior.js#L97
|
||||
// the business object of the copied element is mutated
|
||||
// see https://github.com/bpmn-io/bpmn-js/issues/798
|
||||
expect(intermediateThrowEventBo.name).not.to.exist;
|
||||
}));
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue