Martin Hochel
Martin Hochel
So it looks like I've made a very good decision to move this to 2.1 because ng2 RC.4 was just released with another set of breaking changes https://github.com/angular/angular/blob/master/CHANGELOG.md#200-rc4-2016-06-30
Hey @aciccarello. I took look at your code. Looks good so far. I'm not very keen to create separate scoped packages like ng2 does(or more simplified, don't have time for...
you can do something like: ``` typescript // In my.component.ts @Component({ selector: 'my-component' }) class MyComponent { constructor(depService: MyDependency) { // ... } } // In my.component.spec.ts import {provide} from...
will this work for you @aciccarello ?
the Api testing docs seems to be not updated but the function works as expected. you can try that by yourself https://github.com/ngParty/Angular1-scaffold/blob/master/src/app/app.component.spec.ts
Hey! can you provide a Plnkr pls or some code example? thanks!
also using queries is not recommended if you wanna query anything within dynamic scope ( content within ngIf or ngRepeat etc ), because those things are not guaranteed to be...
sorry was busy with non Angular things lately. Need take a look. Sry for delay @aciccarello
Optional of course. Leave the users choose what they want is my motto with this one! :) To enable it, It would look like within your main.ts ``` import 'zone.js';...
also possible related issue https://github.com/Microsoft/TypeScript/issues/14591