Alex Malkevich

Results 96 comments of Alex Malkevich

I'm trying to use this tool with my project which is not based on angular cli but uses Webpack as a build tool. The stack is Angular 4, NgRx. I've...

Just a quick update here. I progressed quite a bit with my work on static routes resolution and it is working with most of basic use cases. It's also already...

I wrote a little gist for those who want to be able to generate route manifest right now: https://gist.github.com/gund/651bdbe7339a40b94fab3c0e6a3b3fb2

I'm having different issues, specifically a lot of errors regarding usage of RxJs operators like: ``` Property 'map' does not exist on type 'Observable' ``` I have one .ts file...

@alfredoperez yes I do have a whole lot of them located in one file and I'm importing that file right in the entry point (my module). But it still complains...

With prebundled module I have successfully server rendered an app! So until there will be a more fine grained control I guess for real-world complex application prebundling is the only...

@stephaneeybert by prebundling I mean complete bundling of application as you would do for browsers (transpile TS, process styles etc) but then run that app on the server side in...

Approach with `spyOnProperty` actually works but it is doing something different than just `spyOn`. I actually had an error saying `TypeError: Object(...) is not a function` so it was obvious...

@slackersoft you are right, I really want to use just `spyOn`, BUT as many of us explained before (including me) it does not work with objects from other modules thus...

@slackersoft I can create a PR for this. Just to clarify, you want to have `spyOnModule` that will support both spying on normal functions as well as functions declared as...