1 min readMar 19, 2019
Elegant ways to test Observables !
I use it in my tests, event if there is no subscribe in the component and only an async pipe :
<div *ngFor=”let todo of todos$ | async” class=”todo”> {{todo.id}} </div>
Thanks Natanael :)
Elegant ways to test Observables !
I use it in my tests, event if there is no subscribe in the component and only an async pipe :
<div *ngFor=”let todo of todos$ | async” class=”todo”> {{todo.id}} </div>
Thanks Natanael :)