Currently in routes unit test I'm testing if appropriate controller and template are called, like seen here. Also, in some routes I have resolved object. I can access them like:
expect($route.routes['/someroute'].resolve.name_of_field).not.toBe(null);
My question is: Should I check for resolved objects in routes unit test because they are part of routing config on one hand but on the other should I cover that by unit testing services that are used for resolving objects?