How do I get the code inside the skipWhile to show as covered by istanbul? I'm using Angular, jasmine and rxjs 6. It can be a completely trivial test as long as the coverage stat shows its covered.
ngOnInit() {
this.claimSubscription = this.store.pipe(select(ClaimStoreSelectors.selectClaim),
skipWhile(
clm =>
clm.claimId !== this.route.snapshot.params['id']
))
.subscribe(claim => {
//unimportant for the question
});
}