it('should able to check existance of non exist role', async () => {
      const exists = await rbac.exists('adminooooo');
      expect(exists).toBe(false);
    });