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