describe('calculateVerticalCaret', () => {
  it('should get caret top alignment', () => {
    expect(calculateVerticalCaret({ height: 100 }, { height: 10 }, { height: 5 }, AlignmentTypes.top)).toEqual(
      47.5 + CARET_OFFSET
    );