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