bpmn-js/test/spec/features/modeling/behavior/util/LineIntersectSpec.js
Nico Rehwaldt 9be61259bd chore(project): drop 'use strict'
We use ES modules, so 'use strict' is not necessary anymore.
2018-04-03 18:09:53 +02:00

29 lines
772 B
JavaScript

import intersection from 'lib/features/modeling/behavior/util/LineIntersect';
describe('modeling/behavior/util - LineIntersect', function() {
it('should compute intersections', function() {
expect(intersection(
{ x: 10, y: 20 }, { x: 50, y: 50 },
{ x: 10, y: 50 }, { x: 50, y: 50 }
)).to.eql({ x: 50, y: 50 });
expect(intersection(
{ x: 10, y: 20 }, { x: 10, y: 50 },
{ x: 10, y: 50 }, { x: 50, y: 50 }
)).to.eql({ x: 10, y: 50 });
expect(intersection(
{ x: 50, y: 50 }, { x: 10, y: 40 },
{ x: 10, y: 50 }, { x: 50, y: 50 }
)).to.eql({ x: 50, y: 50 });
expect(intersection(
{ x: 0, y: 0 }, { x: 100, y: 100 },
{ x: 40, y: 0 }, { x: 30, y: 10 }
)).to.eql({ x: 20, y: 20 });
});
});