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