Thomas Ortiz
Results
2
comments of
Thomas Ortiz
I've gotten around similar issues in the past by using Jasmine's built-in helpers - `jasmine.any(SOME_TYPE)` - `jasmine.objectContaining(OBJ_WITH_PROPERTIES)`. - `jasmine.anything()` For example, you could probably do ```TS httpSpy.get.mustBeCalledWith(MyBasePath + 'api/myEndpoint', jasmine.any(Object))...
This isn't possible because of Angular's HTTP Client's restrictions. See #166 for an explanation