I have a presentational form component which gets it's form from the service. Handling value changes, adding new controls, removing controls, etc happens in the service. I already wrote many test cases for the service but my company demands to have at least 80% code coverage so I need to test almost everything lol.
Component's class has only few methods which are used to call service's methods. And I can't test DOM either because whenever some action happens that changes something in Form Group, It's being handled by the service.