Skip to content

Commit

Permalink
test(modeling/layout): expect layout on reconnect end
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac authored and nikku committed Apr 18, 2019
1 parent 9637f26 commit 6c5a370
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/spec/features/modeling/layout/LayoutSequenceFlowSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,10 +294,10 @@ describe('features/modeling - layout', function() {

describe('relayout', function() {

it('should not repair after reconnect end', inject(function() {
it('should repair after reconnect end', inject(function() {

// given
var newDocking = { x: 660, y: 280 };
var newDocking = { x: 660, y: 300 };
var connection = element('SequenceFlow_1');

// when
Expand All @@ -307,8 +307,8 @@ describe('features/modeling - layout', function() {
expect(connection).to.have.waypoints([
{ x: 382, y: 241 },
{ x: 559, y: 241 },
{ x: 559, y: 138 },
{ x: 660, y: 280 }
{ x: 559, y: 300 },
{ x: 655, y: 300 }
]);
}));

Expand Down

0 comments on commit 6c5a370

Please sign in to comment.