describe("when the field's value is not in the provided list", () => {
    test("should return true", () => {
      const [form, field] = createAndGetFormAndInput("text", "abc");
      expect(HTMLFormValidations.notIn(form, field, ...["def", "ghi"])).toBe(true);
    });