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