it('should able to check existance of permission', async () => {
      const exists = await rbac.existsPermission('update', 'article');
      expect(exists).toBe(true);
    });