describe("when user whitelist is empty or not set", () => {
    const isAuthorized = userAuthorization([]);

    it("should return true with any email", () => {
      expect(isAuthorized({ email: "teste@teste.com" })).toBeTruthy();