test(copy-paste): fix formating

This commit is contained in:
Nico Rehwaldt 2018-04-09 11:24:49 +02:00
parent 3f4fba40fa
commit b4fcb2d906
1 changed files with 9 additions and 7 deletions

View File

@ -287,16 +287,18 @@ describe('features/copy-paste', function() {
describe('rules', function() {
it('disallow individual boundary events copying', inject(function(copyPaste, elementRegistry, canvas) {
it('disallow individual boundary events copying', inject(
function(copyPaste, elementRegistry, canvas) {
var boundaryEventA = elementRegistry.get('BoundaryEvent_1404oxd'),
boundaryEventB = elementRegistry.get('BoundaryEvent_1c94bi9');
var boundaryEventA = elementRegistry.get('BoundaryEvent_1404oxd'),
boundaryEventB = elementRegistry.get('BoundaryEvent_1c94bi9');
// when
var tree = copy([ boundaryEventA, boundaryEventB ]);
// when
var tree = copy([ boundaryEventA, boundaryEventB ]);
expect(tree.getLength()).to.equal(0);
}));
expect(tree.getLength()).to.equal(0);
}
));
});
});