src/components/InternalTooltip/helpers/__test__/resolverCenter.spec.js
/* eslint-disable id-length */
import resolverCenter from '../resolverCenter';
describe('resolverCenter', () => {
it('should return the correct center position', () => {
const param = {
trigger: {
leftUpAnchor: {
x: 109,
y: 658,
},
leftBottomAnchor: {
x: 109,
y: 698,
},
rightUpAnchor: {
x: 149,
y: 658,
},
rightBottomAnchor: {
x: 149,
y: 698,
},
width: 40,
height: 40,
},
viewport: {
width: 240,
height: 761,
},
content: {
height: 110,
width: 220,
},
};
const expected = {
top: param.trigger.leftUpAnchor.y - param.content.height / 2,
left: param.trigger.rightUpAnchor.x - param.content.width / 2 - param.trigger.width / 2,
};
expect(resolverCenter(param)).toEqual(expected);
});
});