William Chelman
William Chelman
Yes, but I use Angular 1.4.7, so there should not be compatibility issues with date-picker which requires 1.2+ no ? (the bower.json that I mentionned is [the one of date-picker](https://github.com/g00fy-/angular-datepicker/blob/master/bower.json),...
Hi all, Here is a minimal repository where this bug is reproduced: https://github.com/WilliamChelman/angular-jest-bug-repro How-to: - `npm ci` - `npm t` - This fails with something like this > Cannot find...
For some reason I'm currently unable to reproduce the dupMap.get error, even if it was that same error that brought me here... But now that I think of it (after...
Updating the bower.json would be nice :)
@prbaron Thanks for the hack, I just had an issue with the postLoader, none of my .ts were processed, I had to change the regex used: ``` postLoaders : [...
You could try something like ```javascript this.authHttp.get('/items') .map(response => response.json().map(item => deserialize(Item, item))) .catch(this.handleError) .subscribe(data => console.log(data)); ```
@rreid116 The `this.authHttp.get('/items')` return a promise with a response object with the `json` method on it but you might not be using that particular service / library, do you ?...