Andrew Ni
Andrew Ni
Currently, Client initialization fails if we provide a filepath that includes directories that don't exist. Client initialization should instead create any missing parents of this path. Current behavior: ```python Client(vcd_dict['host'],...
```python def as_table(obj_list, show_id=False, sort_headers=True, hide_fields=['href', 'type']): if len(obj_list) == 0: return '' else: if sort_headers: headers = sorted(obj_list[0].keys()) else: headers = obj_list[0].keys() if not show_id and 'id' in headers:...
@pandeys is there a ctot pipeline available to easily test this? or is there only manual testing? --- This change is [](https://reviewable.io/reviews/vmware/vcd-cli/486)
If an ovdc network is owned by a data center group (as opposed to an ovdc), UI's API response processing will fail due to receiving an orgVdc property value of...
## Current Behavior When writing Jest unit tests in `*.spec.ts` files (Angular), there are red squiggly lines underneath all of my assertions, and intellisense does not show the correct options,...