describe("HTMLFormValidations.maxLength", () => {
  describe("when the field's value is less than the maxLength", () => {
    test("should return true", () => {
      const [form, field] = createAndGetFormAndInput("text", "abc");
      expect(HTMLFormValidations.maxLength(form, field, 5)).toBe(true);