describe("and the field value's length is less than minLength", () => {
      test("should return false", () => {
        const [form, field] = createAndGetFormAndInput("text", "20");
        expect(HTMLFormValidations.digitsLengthBetween(form, field, 5, 10)).toBe(false);
      });