While developing applications with Angular (2,4,5,...) people are using a lot of *ngIf="whatever_condition"
and less often also ngSwitch
However I have not seen any tooling that would be able to provide information about how much of that code was actually tested..
Obviously for Typescript files there's istanbul loader to get the coverage, but I believe it gives false picture of having a high coverage in a sense that a big chunk of the logic sits in the views for which there is no measurement.. I.e. if I have branch coverage of 90% on Typescript, but still have two times as much branches in the views, the actual coverage might be somewhere between 45% and 90%.
Is there any tooling out there that is able to measure code coverage for Angular views and show it in a meaningful way?