describe('toBeLessThan', () => {
  it('does not throw when the actual value is less than the expected value', () => {
    expect(() => {
      expect(2).toBeLessThan(3)
    }).toNotThrow()